When I use HTTP.SubmitSecure() I get the following error message from HTTP.GetHTTPErrorInfo(): The connection with the server was reset
The status from HTTP.GetHTTPErrorInfo() is 200.
Application.GetLastError() returns error number 2502: Could not open request.
StatusDlg.Show() shows:
Connected to server.
Saving
Here is a fragment of the code:
myvalues = {};
myvalues.invite_id = "85";
myvalues.email = "email@test.com";
myvalues.username = SessionVar.Expand("%UserName%");
myvalues.password = SessionVar.Expand("%PassWord%");
sResult = HTTP.SubmitSecure("https://www.domain.com/register.jsp", myvalues, SUBMITWEB_GET, 10, 80);
Doing the same thing with HTTP.Submit() and an http address works fine.
Submitting the equivalent request from a browser works fine. The page being requested exists and functions.
Any help on this would be greatly appreciated!
Thanks

