Microsoft
Software
Hardware
Network
Question : WScript: Retry on HTTP GET Connection Timeout
Hi there,
The following command line runs the following WScript for monitoring a website.
All is working fine. I need to add a function to the wscript so that when it can't connect for 1 second, it retries to connect 5 times (with the same 1sec timeout.) If after the last try it still can't connect, it will output the following message "ConnectionTimeout" then exit.
Can you help me with this?
COMMAND LINE: cscript Monitor.js
http://en.wikipedia.org/wi
ki/Baloghi
a
>Output.t
xt
WScript (NAME: Monitor.js):
var request = new ActiveXObject("Msxml2.XMLH
TTP");
var notyetready = 1;
request.onreadystatechange
=function(
)
{
if(request.readyState==4)
{
WScript.Echo(request.respo
nseText);
notyetready = 0;
}
}
var objArgs = WScript.Arguments;
WScript.Echo(objArgs(0));
request.open( "GET", objArgs(0) , true );
request.send(null);
while( notyetready )
{
WScript.Sleep( 100 );
}
Thanks for your help,
Rene
Answer : WScript: Retry on HTTP GET Connection Timeout
no problema mate :)
Random Solutions
VB.net query problem
Logging in as domain user outside of domain
Access 2007 - Query Question
css conditional statements for different browsers AND different resolutions?
WPAD setting for local webcams
Windows XP BSOD 0x000000f4 (0x00000003, 0x86e69b50, 0x86e69cc4, 0x805fb146)
"404 - File not found" for Default .aspx on IIS 7.5
switching networks on a cicso asa5510
Delphi & TWebBrowser issue ???
Excel (2010) Calculate Working Hours Between DateCreated and DateAssigned