Re: IIS not responding to some requests Error: 12029
From: Ken Schaefer (kenREMOVE_at_THISadOpenStatic.com)
Date: 06/13/04
- Next message: Dude arizona: "Re: ban IP with ISS manager"
- Previous message: Dude arizona: "RE: ban IP with ISS manager"
- In reply to: Baris Seker: "IIS not responding to some requests Error: 12029"
- Next in thread: Baris Seker: "Re: IIS not responding to some requests Error: 12029"
- Reply: Baris Seker: "Re: IIS not responding to some requests Error: 12029"
- Reply: Baris Seker: "Re: IIS not responding to some requests Error: 12029"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 13 Jun 2004 20:30:43 +1000
Hi,
Error 12029 is *not* a HTTP status code. HTTP status codes are only digits,
eg 200 (OK), or 404 (File Not Found) or 500 (Internal Server Error). 12029
is a different error. I have had a quick look, and these are the matches I
can see for 12029:
ERROR_INTERNET_CANNOT_CONNECT inetmsg.h
ERROR_INTERNET_CANNOT_CONNECT wininet.h
I assume that XMLHttp is using the WinInet APIs, and for some reason can not
connect to the internet (I assume that you do *not* see anything in the IIS
logfiles when these requests are failing - that would indicate that the
request never makes it to IIS).
I don't think this is an IIS issue. I think your machine may have wider
issues with network connectivity or the network stack. It could be a
hardware issue, or it could be some other issue.
Is there anything in the Windows Event Logs? Is there anything in the IIS
logs that matches these requests from XMLHTTP?
Cheers
Ken
"Baris Seker" <bseker@hotmail.com> wrote in message
news:BF5C451D-2D83-4138-8C99-2826A25F0E44@microsoft.com...
: I have a server running IIS 5.0 with 2 processors and 2.5 GB RAM.
:
: A week ago (nothing changed before that as far as I know) IIS started to
fail on some requests.
:
: The CPU is very low however some of the requested pages from the server is
returning with and error. XMLHttp is giving a HTTP status: 12029.
:
: I maxed out MaxEndPointConnections and ServerListenBacklog with setting
them to 0.
:
: The error frequency is not correlated to server activity. I get the error
even when there is not much going on on the server.
:
: The failing requests are occuring on every site on the server.
:
: I don't believe this is a hardware problem because the responses are
failing even for a website at address 127.0.0.1.
:
: Do I need to reinstall windows (as usual)?
:
: I can give you other stats if you are interested.
:
: The script below should give you a 12029, if not try a few times.
:
: var xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.4.0");
: for(var i = 0; i < 10; i++)
: {
: xmlHttpReq.open("GET", "http://www.netproje.com/", false);
: try
: {
: xmlHttpReq.send();
: }
: catch(e)
: {
: WScript.Echo(e.description);
: }
: WScript.Echo(xmlHttpReq.status);
: }
:
:
- Next message: Dude arizona: "Re: ban IP with ISS manager"
- Previous message: Dude arizona: "RE: ban IP with ISS manager"
- In reply to: Baris Seker: "IIS not responding to some requests Error: 12029"
- Next in thread: Baris Seker: "Re: IIS not responding to some requests Error: 12029"
- Reply: Baris Seker: "Re: IIS not responding to some requests Error: 12029"
- Reply: Baris Seker: "Re: IIS not responding to some requests Error: 12029"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|