First I'd suggest to change:
Set httpRequest.Server = "http://127.0.0.1:8080"
to:
Set httpRequest.Server = "127.0.0.1"
Set httpRequest.Port = "8080"
I would also check the status after:
Set status = httpRequest.Post("/collect_patient_information")
And then try again.
- Log in to post comments