This is my asp code
<%
http = server.createobject("microsoft.xmlhttp")
http.open "post", servleturl, false
http.setrequestheader "content-type", "application/x-www-form-urlencoded"
http.setrequestheader "accept-encoding", "gzip, deflate"
http.send "request=" & sxml
http_response = http.responsetext
%>
i need to make TimeOut when the response not come in 15 seconds how?
Using waitForResponse method of
ServerXMLHTTPinstance after the.Sendcall is a proper way, I’d recommend.Also to use
.WaitForResponse, need to make an asynchronous call by settingTruethe third parameter of.Openmethod.