Reputation: 10920
I have a web role which works fine when test in emulator. But for some reasons, App is crashing frequently. Crashing is random, means there is no specific code which is doing that. Same page works fine for sometime and then causes the application to crash suddently. Windows event is showing following trace for the error
Faulting application name: w3wp.exe, version: 8.0.9200.16384, time stamp: 0x50108835
Faulting module name: ntdll.dll, version: 6.2.9200.16579, time stamp: 0x51637f77 Exception code: 0xc00000fd Fault offset: 0x000000000001a9ea Faulting process id: 0xfdc Faulting application start time: 0x01cebece494746aa Faulting application path: d:\windows\system32\inetsrv\w3wp.exe Faulting module path: D:\Windows\SYSTEM32\ntdll.dll Report Id: 8e17cf44-2ac1-11e3-93f0-00155da90d91 Faulting package full name: Faulting package-relative application ID:
Any help is really appreciated.
thanx
Upvotes: 0
Views: 288
Reputation: 11008
See http://blogs.msdn.com/b/tess/archive/2008/03/31/net-case-study-stackoverflow-exception-when-using-a-complex-rowfilter.aspx for how to troubleshoot c00000fd errors in .NET.
Upvotes: 1
Reputation: 15861
The 0xc00000fd exception is a stack overflow exception. You likely have an infinite or forever recursive loop, dividing by a number that's very close to 0, or some other un-handled error that's causing stack overflow.
Upvotes: 1