Thanks Anthony for the help -pkb
Here is the documentation and the link to MSDN
oServerXMLHTTPRequest.setTimeouts (resolveTimeout, connectTimeout, sendTimeout, receiveTimeout)
Options
resolveTimeout A long integer. The value is used to match host names (for example, "www.microsoft.com") to IP addresses; the default value is infinite, which means no timeout.
ConnectTimeout A long integer. The value is used to establish a communication socket with the target server with a minimum default timeout of 60 seconds.
SendTimeout A long integer. The value is used to send a separate request data packet (if any) to the communication socket on the target server. A large request sent to the server is usually split into several packets; The send timeout is used to send each packet individually. The default value is 30 seconds.
ReceiveTimeout A long integer. The value is used to receive the response data packet from the target server. Large responses will be split into multiple packages; A receive timeout is used to retrieve each packet of data from the socket. The default value is 30 seconds.
http://msdn.microsoft.com/en-us/library/ms760403(VS.85,lightweight).aspx
Pbearne
source share