Re: IIS 6.0 hangs on simple HTML
From: David Wang [Msft] (someone_at_online.microsoft.com)
Date: 08/31/04
- Next message: techdog: "IIS Stopped working !"
- Previous message: David Wang [Msft]: "Re: 0x2746 (An existing connection was forcibly closed by the remo"
- In reply to: Amil Hanish: "IIS 6.0 hangs on simple HTML"
- Messages sorted by: [ date ] [ thread ]
Date: Mon, 30 Aug 2004 21:53:08 -0700
Is this clean install (or upgrade).
What applications/ISAPI do you have installed on the server.
A hang will show up in the log file; you probably didn't wait long enough
for it to be recorded. A hang on a static file can happen when the client
and server miscommunicate the expected size of the static file -- so one
side or the other "waits" for bytes that are never going to come, due to the
miscommunication. Now, practically, the client and server "Timeout" instead
of waiting infinitely -- and timeouts are logged by the server. However, if
you refresh or otherwise stop communication, the server wouldn't think it
"timed out" and thus won't record it as a failure.
Timeouts should show up in the %SYSTEMROOT%\System32\LogFiles\HTTPERR\*.log
log files.
Your failure pattern suggest that your website may be running some ISAPI
Filter that is munging output response (incorrectly) and causing the browser
to hang. If it was a pure static file without ISAPI Filter running, after
your third request, it would have been cached already, so if it didn't hang
on the first ones, it wouldn't hang anymore. The fact you are hanging says
that the file wasn't cached and was probably munged by something like an
ISAPI.
ISAPI can easily cause IIS to crash/hang through no fault of IIS, so I would
investigate them as their own problems.
-- //David IIS This posting is provided "AS IS" with no warranties, and confers no rights. // "Amil Hanish" <amilhanish@hotmail.com> wrote in message news:uSQVtvujEHA.3968@TK2MSFTNGP11.phx.gbl... I'm having issues with IIS 6.0 on Windows Server 2003. I can create a simple dummy.htm with just the default html tags. About 1 out of 10 times, when I click refresh, it just hangs forever. The site does not have any real traffic...except me testing it. This is only happening for a specific website; I have several other sites on the same box that are ok. Again, it hangs using a barebones html page. Each site is configured with its own unique application name. How can I tell what IIS 6.0 is doing? The log files don't show anything since the request is not completing? I do have a w3wp.exe process but that could be for one of the other busy sites. While it is hanging...if I click the stop button and view the browser source, it shows: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=hz-gb-2312"></HEAD> <BODY></BODY></HTML> But, my dummy.htm contains: <html> <head><title>bogus</title></head> <body>hello world</body> </html> Any ideas?
- Next message: techdog: "IIS Stopped working !"
- Previous message: David Wang [Msft]: "Re: 0x2746 (An existing connection was forcibly closed by the remo"
- In reply to: Amil Hanish: "IIS 6.0 hangs on simple HTML"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|