Occasionally, my lower traffic sites will stop responding to requests entirely
This always occurs after the Application Pool for that site has shutdown due to idle timeout
All applications are strictly asp.net
There are no errors logged, no new traffic in the Logfiles since the AppPool restarted
When you go to the site's address, IE tells you that the Site is found and connecting
At first we thought it was just the Pause waiting for the JIC to finish
But they will hang indefinately until the App Pool is recycled. Accumulating concurrent requests that never drop until the recycle.

Re: IIS 6 Site Hang after IdleTimeout Shutdown by David

David
Sat May 22 06:22:45 CDT 2004

What do you see in the HTTPERR log files at
%SYSTEMROOT%\System32\LogFiles\HTTPERR\*.log for the requests that are
"hanging".

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Pigglet187" <anonymous@discussions.microsoft.com> wrote in message
news:924417D9-7B78-44D0-B890-91766239746C@microsoft.com...
Occasionally, my lower traffic sites will stop responding to requests
entirely.
This always occurs after the Application Pool for that site has shutdown due
to idle timeout.
All applications are strictly asp.net.
There are no errors logged, no new traffic in the Logfiles since the AppPool
restarted.
When you go to the site's address, IE tells you that the Site is found and
connecting.
At first we thought it was just the Pause waiting for the JIC to finish.
But they will hang indefinately until the App Pool is recycled. Accumulating
concurrent requests that never drop until the recycle.



Re: IIS 6 Site Hang after IdleTimeout Shutdown by anonymous

anonymous
Mon May 24 16:21:01 CDT 2004

Unable to find anything in The HTTPError logs pertaining to this problem other than all of the Connection Dropped errors when the user gives up in frustration, and Connection abandoned errors when I recycle the App Pool to restore functionality
As previously stated, it looks exactly like the site is Compiling its code, but it never completes
In the sites logs, No requests are logged at all while this is occuring



Re: IIS 6 Site Hang after IdleTimeout Shutdown by David

David
Mon May 24 16:57:44 CDT 2004

How about you configure the AppPool serving ASP.Net to not idle-timeout?
Try just using the Recycle-by-Private-Memory feature.

It is also not clear whether the issue you see is with one particular
ASP.Net application, all ASP.Net applications, all web requests to the
AppPool (ASP.Net or not), or all requests to the web server.

If you see this behavior affecting all requests to the web server or app
pool, the problem is likely outside of IIS6. Recycling a process destroys
all state inside the worker process, so an app pool that has recycled should
not have "hanging" issues for any pages. If it does -- then it's likely
that something custom is restoring/reusing old state -- and that is no
longer an IIS issue.

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Pigglet187" <anonymous@discussions.microsoft.com> wrote in message
news:8572D4FA-B139-4F43-8AFD-A4095A232D36@microsoft.com...
Unable to find anything in The HTTPError logs pertaining to this problem
other than all of the Connection Dropped errors when the user gives up in
frustration, and Connection abandoned errors when I recycle the App Pool to
restore functionality.
As previously stated, it looks exactly like the site is Compiling its code,
but it never completes.
In the sites logs, No requests are logged at all while this is occuring.





Re: IIS 6 Site Hang after IdleTimeout Shutdown by anonymous

anonymous
Mon May 24 22:11:04 CDT 2004

We have some fears on memory consumption if we were to allow no idle timeout
To do it we would definately have to increase the currently installed RAM
If you mean having recycle by a Memory limit, these sites show no sign of a memory leak and are recycled twice daily automatically, just in case we don't catch this restart issue

This is occuring with Multiple ASP.Net applications, all applications on these machines are basically copies of each other, with cosmetic differences in their output and data is all coming from the same Middle Tier services
Each application Runs in its own App pool to protect each clients integrity

At the time of the "Hang" all requests to that app pool are affected

Recycling the app pool has only positive effects on these sites
The problem shows up when they try to come back from being Shutdown by the idle timout
They do this multiple times a day without a hitch, except for every so many restarts

The hanging application consumes little RAM by the standards of these applications.
I caught one application immediately after the first failed connection
Worker Process was using about 6.5 MB
I connected to it a few more times
Each connection raised the Ram usage on the WorkerProcess about 20K, and Incremented "Current Anonymous Users" perf counter under Web Service by 1. Which never decreased on its own
After waiting 2 minutes for page to load. Closed Browser
Browser Close Logs this in HTTPError.lo
2004-05-25 02:11:08 10.10.50.38 2945 192.168.1.104 80 HTTP/1.1 GET / - 1905456688 Connection_Droppe




Re: IIS 6 Site Hang after IdleTimeout Shutdown by David

David
Tue May 25 02:49:16 CDT 2004

Do your ASP.Net use any sort of shared state or objects that persist across
a recycle?

It sounds like you are using such persisted state -- otherwise, every single
recycle should be have like the other.

At this point, this is no longer an IIS issue but one with your
application's interaction with recycling.

What Middle Tier services is being shared? Are you sure that the app isn't
inadvertently taking some lock in the middle tier services that gets "lost"
by the recycle, and hence on restart "hangs" while waiting for the lock...

When you next see the hang, can you run IIS State on the w3wp.exe in
question and post the log? That way, we can see what is going on inside
that process and see if anything is waiting indefinitely (i.e. "hanging").

http://www.iisfaq.com/default.aspx?view=P197

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Pigglet187" <anonymous@discussions.microsoft.com> wrote in message
news:6E01562B-73E7-40A0-B4B0-826BF5AF1B5E@microsoft.com...
We have some fears on memory consumption if we were to allow no idle
timeout.
To do it we would definately have to increase the currently installed RAM.
If you mean having recycle by a Memory limit, these sites show no sign of a
memory leak and are recycled twice daily automatically, just in case we
don't catch this restart issue.

This is occuring with Multiple ASP.Net applications, all applications on
these machines are basically copies of each other, with cosmetic differences
in their output and data is all coming from the same Middle Tier services.
Each application Runs in its own App pool to protect each clients integrity.

At the time of the "Hang" all requests to that app pool are affected.

Recycling the app pool has only positive effects on these sites.
The problem shows up when they try to come back from being Shutdown by the
idle timout.
They do this multiple times a day without a hitch, except for every so many
restarts.

The hanging application consumes little RAM by the standards of these
applications.
I caught one application immediately after the first failed connection.
Worker Process was using about 6.5 MB
I connected to it a few more times.
Each connection raised the Ram usage on the WorkerProcess about 20K, and
Incremented "Current Anonymous Users" perf counter under Web Service by 1.
Which never decreased on its own.
After waiting 2 minutes for page to load. Closed Browser.
Browser Close Logs this in HTTPError.log
2004-05-25 02:11:08 10.10.50.38 2945 192.168.1.104 80 HTTP/1.1 GET / -
1905456688 Connection_Dropped






Re: IIS 6 Site Hang after IdleTimeout Shutdown by anonymous

anonymous
Tue May 25 21:21:04 CDT 2004

Would love to attach this IISState Log, but it is 36KB text file
And way too long to paste in a post
Maybe I'm blind, but I don't see a way to attach a file

Here are some entries that appeared very interesting to my unpracticed eye

Thread ID: 1
System Thread ID: 1e6
Kernel Time: 0:0:0.1
User Time: 0:0:0.1
Thread Type: Managed Thread. Possible ASP.Net page or other .Net worke
succeede
Loaded Son of Strike data table version 5 from "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorwks.dll
Thread 1
Fail to fill ThreadStor
Not a managed thread

Begin System Thread Informatio

# ChildEBP RetAddr
00 0177ff54 77f430c7 SharedUserData!SystemCallStub+0x
01 0177ff58 77e430bc ntdll!ZwRemoveIoCompletion+0x
02 0177ff84 792e9b2f kernel32!GetQueuedCompletionStatus+0x2
03 0177ffb8 77e4a990 mscorwks!ThreadpoolMgr::CompletionPortThreadStart+0x4
04 0177ffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID: 1
System Thread ID: c3
Kernel Time: 0:0:0.1
User Time: 0:0:0.1
Thread Type: Managed Thread. Possible ASP.Net page or other .Net worke
Thread 1
Fail to fill ThreadStor
Not a managed thread

Begin System Thread Informatio

# ChildEBP RetAddr
00 017bfee4 77f4262b SharedUserData!SystemCallStub+0x
01 017bfee8 77e418ea ntdll!NtDelayExecution+0x
02 017bff50 77e416ee kernel32!SleepEx+0x6
03 017bff5c 792e9ebe kernel32!Sleep+0x
04 017bffb8 77e4a990 mscorwks!ThreadpoolMgr::GateThreadStart+0x5
05 017bffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID: 1
System Thread ID: f0
Kernel Time: 0:0:0.
User Time: 0:0:0.
Other information: Thread is waiting for a lock to be released. Looking for lock owner
Owning thread System ID: 1f7
Thread Type: AS
Executing Page: ASP.dll symbols not found. Unable to locate ASP page
Continuing with other analysis

# ChildEBP RetAddr
00 009ffc3c 77f43741 SharedUserData!SystemCallStub+0x
01 009ffc40 77f5d64e ntdll!ZwWaitForSingleObject+0x
02 009ffc7c 77f42044 ntdll!RtlpWaitForCriticalSection+0x12
03 009ffc84 79e8d946 ntdll!RtlEnterCriticalSection+0x4
04 009ffccc 79e75739 aspnet_isapi!GetAppDomain+0x9
05 009fff1c 79e755e9 aspnet_isapi!HttpCompletion::ProcessRequestInManagedCode+0x13
06 009fff24 79e8cb80 aspnet_isapi!HttpCompletion::ProcessCompletion+0x2
07 009fff68 792e9155 aspnet_isapi!CorThreadPoolWorkitemCallback+0x2
08 009fff98 792e92cf mscorwks!ThreadpoolMgr::ExecuteWorkRequest+0x2
09 009fffb8 77e4a990 mscorwks!ThreadpoolMgr::WorkerThreadStart+0x12
0a 009fffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID: 1
System Thread ID: 98
Kernel Time: 0:0:0.
User Time: 0:0:0.
Other information: Thread is waiting for a lock to be released. Looking for lock owner
Owning thread System ID: 1f7
Thread Type: AS
Executing Page: ASP.dll symbols not found. Unable to locate ASP page
Continuing with other analysis

# ChildEBP RetAddr
00 017ffc3c 77f43741 SharedUserData!SystemCallStub+0x
01 017ffc40 77f5d64e ntdll!ZwWaitForSingleObject+0x
02 017ffc7c 77f42044 ntdll!RtlpWaitForCriticalSection+0x12
03 017ffc84 79e8d946 ntdll!RtlEnterCriticalSection+0x4
04 017ffccc 79e75739 aspnet_isapi!GetAppDomain+0x9
05 017fff1c 79e755e9 aspnet_isapi!HttpCompletion::ProcessRequestInManagedCode+0x13
06 017fff24 79e8cb80 aspnet_isapi!HttpCompletion::ProcessCompletion+0x2
07 017fff68 792e9155 aspnet_isapi!CorThreadPoolWorkitemCallback+0x2
08 017fff98 792e92cf mscorwks!ThreadpoolMgr::ExecuteWorkRequest+0x2
09 017fffb8 77e4a990 mscorwks!ThreadpoolMgr::WorkerThreadStart+0x12
0a 017fffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID: 1
System Thread ID: 9
Kernel Time: 0:0:0.
User Time: 0:0:0.
Other information: Thread is waiting for a lock to be released. Looking for lock owner
Owning thread System ID: 1f7
Thread Type: AS
Executing Page: ASP.dll symbols not found. Unable to locate ASP page
Continuing with other analysis

# ChildEBP RetAddr
00 0183fc3c 77f43741 SharedUserData!SystemCallStub+0x
01 0183fc40 77f5d64e ntdll!ZwWaitForSingleObject+0x
02 0183fc7c 77f42044 ntdll!RtlpWaitForCriticalSection+0x12
03 0183fc84 79e8d946 ntdll!RtlEnterCriticalSection+0x4
04 0183fccc 79e75739 aspnet_isapi!GetAppDomain+0x91
05 0183ff1c 79e755e9 aspnet_isapi!HttpCompletion::ProcessRequestInManagedCode+0x13b
06 0183ff24 79e8cb80 aspnet_isapi!HttpCompletion::ProcessCompletion+0x25
07 0183ff68 792e9155 aspnet_isapi!CorThreadPoolWorkitemCallback+0x21
08 0183ff98 792e92cf mscorwks!ThreadpoolMgr::ExecuteWorkRequest+0x24
09 0183ffb8 77e4a990 mscorwks!ThreadpoolMgr::WorkerThreadStart+0x129
0a 0183ffec 00000000 kernel32!BaseThreadStart+0x34

The Looking for lock owner error is repeated through Thread ID: 37

Thread ID: 43
System Thread ID: 1fbc
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Managed Thread. Possible ASP.Net page or other .Net worker
Thread 43
Fail to fill ThreadStore
Not a managed thread.


Begin System Thread Information

# ChildEBP RetAddr
00 016eff54 77f430c7 SharedUserData!SystemCallStub+0x4
01 016eff58 77e430bc ntdll!ZwRemoveIoCompletion+0xc
02 016eff84 792e9b2f kernel32!GetQueuedCompletionStatus+0x27
03 016effb8 77e4a990 mscorwks!ThreadpoolMgr::CompletionPortThreadStart+0x49
04 016effec 00000000 kernel32!BaseThreadStart+0x34





Re: IIS 6 Site Hang after IdleTimeout Shutdown by anonymous

anonymous
Wed May 26 21:06:03 CDT 2004

IISState Lo
Does this help
How can I find a System Thread by the "System Thread ID:
There's an entry saying that a thread is waiting for a lock to be released.

Opened log file 'C:\Documents and Settings\pkustner\output\IISState-3384.log

**********************
Starting new log outpu
IISState version 3.3.1

Wed May 26 18:27:13 200

OS = Windows 2003 Serve
Executable: w3wp.ex
PID = 338

Note: Thread times are formatted as HH:MM:SS.m

**********************


Thread ID:
System Thread ID: a1
Kernel Time: 0:0:0.62
User Time: 0:0:0.4
Thread Type: HTTP Compression Threa
# ChildEBP RetAddr
00 0006fe58 77f43741 SharedUserData!SystemCallStub+0x
01 0006fe5c 77e41817 ntdll!ZwWaitForSingleObject+0x
02 0006fecc 77e4168f kernel32!WaitForSingleObjectEx+0xa
03 0006fedc 5a3635ae kernel32!WaitForSingleObject+0x
04 0006feec 5a364d7d w3dt!WP_CONTEXT::RunMainThreadLoop+0x
05 0006fef4 5a3a1d98 w3dt!UlAtqStartListen+0x2
06 0006ff00 5a3a5d54 w3core!W3_SERVER::StartListen+0x8
07 0006ff0c 010017af w3core!UlW3Start+0xe
08 0006ff44 0100195e w3wp!wmain+0x23
09 0006ffc0 77e4f38c w3wp!wmainCRTStartup+0x12
0a 0006fff0 00000000 kernel32!BaseProcessStart+0x2


Thread ID:
System Thread ID: 7b
Kernel Time: 0:0:0.6
User Time: 0:0:0.3
Thread Type: Other
# ChildEBP RetAddr
00 009bff9c 77f4262b SharedUserData!SystemCallStub+0x
01 009bffa0 77f6b5b2 ntdll!NtDelayExecution+0x
02 009bffb8 77e4a990 ntdll!RtlpTimerThread+0x4
03 009bffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID:
System Thread ID: e3
Kernel Time: 0:0:0.
User Time: 0:0:0.
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 00c6ff28 77f430c7 SharedUserData!SystemCallStub+0x
01 00c6ff2c 77e430bc ntdll!ZwRemoveIoCompletion+0x
02 00c6ff58 5a302360 kernel32!GetQueuedCompletionStatus+0x2
03 00c6ff90 5a302531 W3TP!THREAD_POOL_DATA::ThreadPoolThread+0x3
04 00c6ffa4 5a301d27 W3TP!THREAD_POOL_DATA::ThreadPoolThread+0x2
05 00c6ffb8 77e4a990 W3TP!THREAD_MANAGER::ThreadManagerThread+0x3
06 00c6ffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID:
System Thread ID: af
Kernel Time: 0:0:0.
User Time: 0:0:0.
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 00caff28 77f430c7 SharedUserData!SystemCallStub+0x
01 00caff2c 77e430bc ntdll!ZwRemoveIoCompletion+0x
02 00caff58 5a302360 kernel32!GetQueuedCompletionStatus+0x2
03 00caff90 5a302531 W3TP!THREAD_POOL_DATA::ThreadPoolThread+0x3
04 00caffa4 5a301d27 W3TP!THREAD_POOL_DATA::ThreadPoolThread+0x2
05 00caffb8 77e4a990 W3TP!THREAD_MANAGER::ThreadManagerThread+0x3
06 00caffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID:
System Thread ID: 164
Kernel Time: 0:0:0.1
User Time: 0:0:0.
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 00ceff28 77f430c7 SharedUserData!SystemCallStub+0x
01 00ceff2c 77e430bc ntdll!ZwRemoveIoCompletion+0x
02 00ceff58 5a302360 kernel32!GetQueuedCompletionStatus+0x2
03 00ceff90 5a302531 W3TP!THREAD_POOL_DATA::ThreadPoolThread+0x3
04 00ceffa4 5a301d27 W3TP!THREAD_POOL_DATA::ThreadPoolThread+0x2
05 00ceffb8 77e4a990 W3TP!THREAD_MANAGER::ThreadManagerThread+0x3
06 00ceffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID:
System Thread ID: df
Kernel Time: 0:0:0.20
User Time: 0:0:0.1
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 00d2ff28 77f430c7 SharedUserData!SystemCallStub+0x
01 00d2ff2c 77e430bc ntdll!ZwRemoveIoCompletion+0x
02 00d2ff58 5a302360 kernel32!GetQueuedCompletionStatus+0x2
03 00d2ff90 5a302531 W3TP!THREAD_POOL_DATA::ThreadPoolThread+0x3
04 00d2ffa4 5a301d27 W3TP!THREAD_POOL_DATA::ThreadPoolThread+0x2
05 00d2ffb8 77e4a990 W3TP!THREAD_MANAGER::ThreadManagerThread+0x3
06 00d2ffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID:
System Thread ID: 13f
Kernel Time: 0:0:0.21
User Time: 0:0:0.12
Thread Status: Thread is in a WAIT state.
Thread Type: Other
# ChildEBP RetAddr
00 00defcec 77f4372d SharedUserData!SystemCallStub+0x
01 00defcf0 77f75297 ntdll!NtWaitForMultipleObjects+0x
02 00deffb8 77e4a990 ntdll!RtlpWaitThread+0x15
03 00deffec 00000000 kernel32!BaseThreadStart+0x3


Thread ID:
System Thread ID: 1ae
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: HTTP Compression Thread
# ChildEBP RetAddr
00 016aff14 77f43741 SharedUserData!SystemCallStub+0x4
01 016aff18 77e41817 ntdll!ZwWaitForSingleObject+0xc
02 016aff88 77e4168f kernel32!WaitForSingleObjectEx+0xac
03 016aff98 5a3a51f7 kernel32!WaitForSingleObject+0xf
04 016affb8 77e4a990 w3core!HTTP_COMPRESSION::CompressionThread+0x85
05 016affc4 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 8
System Thread ID: e9c
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Possible ASP page. Possible DCOM activity
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.

No remote call being made

# ChildEBP RetAddr
00 016efe20 77f4313f SharedUserData!SystemCallStub+0x4
01 016efe24 77c57b85 ntdll!NtReplyWaitReceivePortEx+0xc
02 016eff8c 77c60829 RPCRT4!LRPC_ADDRESS::ReceiveLotsaCalls+0x193
03 016eff90 77c60771 RPCRT4!RecvLotsaCallsWrapper+0x9
04 016effb0 77c60857 RPCRT4!BaseCachedThreadRoutine+0x9c
05 016effb8 77e4a990 RPCRT4!ThreadStartRoutine+0x17
06 016effec 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 9
System Thread ID: 734
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 0172ff8c 77f4262b SharedUserData!SystemCallStub+0x4
01 0172ff90 77f6f0fc ntdll!NtDelayExecution+0xc
02 0172ffb8 77e4a990 ntdll!RtlpIOWorkerThread+0x3d
03 0172ffec 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 10
System Thread ID: cc4
Kernel Time: 0:0:0.140
User Time: 0:0:0.46
Thread Type: Managed Thread. Possible ASP.Net page or other .Net worker
succeeded
Loaded Son of Strike data table version 5 from "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorwks.dll"
Thread 10
Fail to fill ThreadStore
Not a managed thread.


Begin System Thread Information

# ChildEBP RetAddr
00 017eff54 77f430c7 SharedUserData!SystemCallStub+0x4
01 017eff58 77e430bc ntdll!ZwRemoveIoCompletion+0xc
02 017eff84 792e9b2f kernel32!GetQueuedCompletionStatus+0x27
03 017effb8 77e4a990 mscorwks!ThreadpoolMgr::CompletionPortThreadStart+0x49
04 017effec 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 11
System Thread ID: fc0
Kernel Time: 0:0:0.0
User Time: 0:0:0.31
Thread Type: Managed Thread. Possible ASP.Net page or other .Net worker
Thread 11
Fail to fill ThreadStore
Not a managed thread.


Begin System Thread Information

# ChildEBP RetAddr
00 0182fee4 77f4262b SharedUserData!SystemCallStub+0x4
01 0182fee8 77e418ea ntdll!NtDelayExecution+0xc
02 0182ff50 77e416ee kernel32!SleepEx+0x68
03 0182ff5c 792e9ebe kernel32!Sleep+0xb
04 0182ffb8 77e4a990 mscorwks!ThreadpoolMgr::GateThreadStart+0x54
05 0182ffec 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 12
System Thread ID: 1480
Kernel Time: 0:0:0.15
User Time: 0:0:0.31
Thread Type: Other
# ChildEBP RetAddr
00 0190ff70 77f430c7 SharedUserData!SystemCallStub+0x4
01 0190ff74 77f7e6ae ntdll!ZwRemoveIoCompletion+0xc
02 0190ffb8 77e4a990 ntdll!RtlpWorkerThread+0x3b
03 0190ffec 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 13
System Thread ID: 1358
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Other information: Thread is waiting for a lock to be released. Looking for lock owner.
Owning thread System ID: 1964
Thread Type: ASP
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.

# ChildEBP RetAddr
00 0194fc3c 77f43741 SharedUserData!SystemCallStub+0x4
01 0194fc40 77f5d64e ntdll!ZwWaitForSingleObject+0xc
02 0194fc7c 77f42044 ntdll!RtlpWaitForCriticalSection+0x126
03 0194fc84 79e8d946 ntdll!RtlEnterCriticalSection+0x46
04 0194fccc 79e75739 aspnet_isapi!GetAppDomain+0x91
05 0194ff1c 79e755e9 aspnet_isapi!HttpCompletion::ProcessRequestInManagedCode+0x13b
06 0194ff24 79e8cb80 aspnet_isapi!HttpCompletion::ProcessCompletion+0x25
07 0194ff68 792e9155 aspnet_isapi!CorThreadPoolWorkitemCallback+0x21
08 0194ff98 792e92cf mscorwks!ThreadpoolMgr::ExecuteWorkRequest+0x24
09 0194ffb8 77e4a990 mscorwks!ThreadpoolMgr::WorkerThreadStart+0x129
0a 0194ffec 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 14
System Thread ID: 1310
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 009fff70 77f430c7 SharedUserData!SystemCallStub+0x4
01 009fff74 77f7e6ae ntdll!ZwRemoveIoCompletion+0xc
02 009fffb8 77e4a990 ntdll!RtlpWorkerThread+0x3b
03 009fffec 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 15
System Thread ID: 1b34
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 00a6ff70 77f430c7 SharedUserData!SystemCallStub+0x4
01 00a6ff74 77f7e6ae ntdll!ZwRemoveIoCompletion+0xc
02 00a6ffb8 77e4a990 ntdll!RtlpWorkerThread+0x3b
03 00a6ffec 00000000 kernel32!BaseThreadStart+0x34




Thread ID: 16
System Thread ID: 1268
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Managed Thread. Possible ASP.Net page or other .Net worker
Thread 16
Fail to fill ThreadStore
Not a managed thread.


Begin System Thread Information

# ChildEBP RetAddr
00 0097ff54 77f430c7 SharedUserData!SystemCallStub+0x4
01 0097ff58 77e430bc ntdll!ZwRemoveIoCompletion+0xc
02 0097ff84 792e9b2f kernel32!GetQueuedCompletionStatus+0x27
03 0097ffb8 77e4a990 mscorwks!ThreadpoolMgr::CompletionPortThreadStart+0x49
04 0097ffec 00000000 kernel32!BaseThreadStart+0x34

Closing open log file C:\Documents and Settings\pkustner\output\IISState-3384.log