| Baris Seker 2004-05-31, 7:50 am |
| 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 failinf requests are occuring on every site on the server.
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);
}
|