Simon (or other gurus),
I'm having trouble overriding the default HTTP timeout of 15
seconds. I'm on Windows XP using PocketSOAP 1.4 Beta with
JavaScript.
Here's how I'm trying to set the timeout:
var httpSoap
= WScript.CreateObject("pocketSOAP.HTTPTransport.2");
// ### This doesn't have any effect!?!
httpSoap.Timeout = 60000; // Give it a minute
httpSoap.SOAPACTION = soapAction;
// message setup omitted ...
// Send the SOAP message, parse the response
httpSoap.Send(destURL, message.Serialize());
message.Parse(httpSoap);
I get a "Timeout waiting for response" error after 15 seconds.
Since Timeout's been working for quite a while on Windows (glad to
see its recent support on PocketPC as well), this must be some
mistake on my part. Any suggestions would be much appreciated.
Thanks,
Jim Stearns