Ich habe ein Problem mit einigen meiner Anwendungen. Es ist eine wcf-basierte Anwendung, die unter IIS6 in Windows 2003 Server (x86) läuft:
Im Ereignisprotokoll erhalte ich einen solchen Fehler von der Quelle "W3SVC-WP" (EventID=2262):
ISAPI 'C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll' reported itself as unhealthy for the following reason: 'Deadlock detected'.
Ich versuche herauszufinden, was hier los ist. Ich habe einen Dump für den Orphan Worker Process erstellt, wie in dieser Anleitung beschrieben KB . Wenn eine Blockierung auftritt, wird ein Minidump erstellt.
Dann nehme ich diesen Minidump, um zu versuchen zu verstehen, was passiert ist. Hier stecke ich fest.
Ich starte WinDbg x86, öffne meinen Dump und dann:
0:037> .loadby sos clr
0:037> .sympath SRV*c:\temp\symbols*http://msdl.microsoft.com/download/symbols
Symbol search path is: SRV*c:\temp\symbols*http://msdl.microsoft.com/download/symbols
Expanded Symbol search path is: srv*c:\temp\symbols*http://msdl.microsoft.com/download/symbols
0:037> !clrstack
The version of SOS does not match the version of CLR you are debugging. Please load the matching version of SOS for the version of CLR you are debugging.
CLR Version: 4.0.30319.1
SOS Version: 4.0.30319.235
CLRDLL: C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\mscordacwks.dll:4.0.30319.235 f:8 doesn't match desired version 4.0.30319.01 f:8
CLRDLL: Loaded DLL c:\temp\symbols\mscordacwks_x86_x86_4.0.30319.01.dll\4BA1D9EF66f000\mscordacwks_x86_x86_4.0.30319.01.dll
OS Thread Id: 0x690 (37)
Unable to walk the managed stack. The current thread is likely not a managed thread.
You can run !threads to get a list of managed threads in the process
Was ist bei diesem Fehler zu tun? - "Die Version von SOS stimmt nicht mit der Version von CLR überein, die Sie debuggen" ?
Derselbe Fehler ("Die Version von SOS stimmt nicht mit der Version von CLR überein, die Sie debuggen"), den ich erhalte, wenn ich den Minidump in VS2010 öffne.
Ich habe diesen Beitrag gelesen - http://tech-thinker.com/Forums/tabid/62/forumid/12/postid/471/scope/posts/Default.aspx und versuchte die Installation von KB2518870 . Das hilft nicht.