I published a new version of my web application. Something in the new version caused IIS to crash, and I cannot determine which code is causing it.
Using the information here , I have enabled automatic crash dumps.
Then, after successfully creating the crash dump, I used the instructions of this question , using WinDbg, to try to determine what happened.
After I found the thread that crashed and ran pe (thread) on it, it shows that this is the result of StackOverflow. However, the details are not indicated:
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 or stacktrace information.
Is there any step that I'm missing to make sure this information either captures or appears in WinDbg?
source share