Microsoft
Software
Hardware
Network
Question : Java Script, Retry on HTTP GET Connection Timeout
Hi there,
I need to add the feature of if the website is unavailable, to wait 10 seconds and try again. If my website is still unavailable, try again 5 times, if still navailable, echo "UnableToConnect" then exit.
IT WOULD LOGICALLY LOOK SOMETHING LIKE THIS (but in Java Script):
SET ConnectCounter=0
:Home
Echo
http://www.MyWebSite.com
Send the GET command to the website and ECHO it out
If can't connect to
http://www.MyWebSite.com
(
If %ConnectCounter% GEQ 5 (
ECHO UnableToConnect
EXIT
)
SET /a ConnectCounter=%ConnectCou
nter%+1
Add a delay of 10Seconds
)
Goto home
HERE IS MY ORIGINAL WORKING JAVA SCRIPT:
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("
http://www.M
yWebSite.c
om
");
request.open( "GET", "
http://www.MyWebSite.com
"
, true );
request.send(null);
while( notyetready )
{
WScript.Sleep( 100 );
}
Thanks for your help,
Rene
Answer : Java Script, Retry on HTTP GET Connection Timeout
I don't know JavaScript very well, but JavaScript is not Java.. they only have their names in common. You want to put your question under prog languages/scripting languages/JavaScript. Good luck!
Random Solutions
Load IOS Cisco 1841
How can I sync up two web servers using Windows Server 2008 or thus Windows Server 2008 has this function?
Exchange 2003 Logical Size vs Physical Size
Forefront TMG Malware and NIS inspection updates aren't working.
canĀ“t install forefront update KB 978297 on windows 2008 SBS
Can I capture mic data?
A tiff file that works well with XP but not windows 7 "paint". Can some one give me some ideas?
PHP error reporting
How do I pass Sonicwall GVC traffic through a TZ170 to terminate on a TZ210?
Exchange 2007 OWA causes 2 audit failures on failed login attempt