Reputation: 7713
I rolled out a new version of my web application. Something in the new version has caused IIS to start crashing and I can't determine what code is causing it.
Using information from here, I enabled automatic crash dumps.
Then after successfully creating a crash dump, I used the instructions from this question, using WinDbg, to try and determine what happened.
After I found the thread that crashed and ran a !pe (thread) on it, it shows that it's a result of a StackOverflow. However no details are given:
0:064> !pe 00000001bfda01f0
Exception object: 00000001bfda01f0
Exception type: System.StackOverflowException
Message: <none>
InnerException: <none>
StackTrace (generated): <none>
StackTraceString: <none>
HResult: 800703e9
As you can see, there is no exception information or stacktrace.
Is there a step I'm missing to make sure this information either gets captures, or to show up in WinDbg?
Upvotes: 4
Views: 600
Reputation: 15797
How I found the source of a StackOverflow exception in the past:
.loadby sos clr
!CLRStack
Source: http://mikesmithdev.com/blog/debug-stack-overflow-exception/
Upvotes: 5