There is no "query" parameter. The query parameter is an optional way to pass the query with a GET request (see the comment in the ASP code).
I did see that ... but it didn't totally make sense to me as written.
So what you are saying is:
1) Whatever is put in the third parameter of the PostString is passed purely as a string via the POST method. There is no key value pair there as with a querysting?
2) If I want to use key value pairs, I should simply call the URL with querystring built in and leave the third parameter blank?
Finally, what happens on the callback if I use querystrings? If I was going to do that, I would do it programmatically:
serverurl="http://localhost/process.apx"
Httputils.PostString("Job1", serverurl & "username=" & <username variable> & "&password=" & <password variable>, "")
.. but later on when doing the Job Complete, I couldn't just check against serverurl right? I'd have to use the FULL querystring version? I'd have to build and compare the same value?
serverurl="http://localhost/process.apx" & "username=" & <username variable> & "&password=" & <password variable>
Httputils.PostString("Job1", serverurl , "")
I'm curious why HttpUtils.IsSuccess doesn't use the JOB name vice the URL ...?
Thanks again!