views:

87

answers:

3

Is it possible to debug issues with stuff like wsstracing? Or is the disassembly the best I can get?

MOSS 2007 SP2.

+3  A: 

Try the Microsoft Public Symbol Server. If the Sharepoint symbols are not there, your next best bet would be to install debug Windows Server from an MSDN subscription and get the symbols for it from there.

Some useful SharePoint debugging blogs:

http://blog.thekid.me.uk/archive/2007/07/25/debugging-tips-for-sharepoint-and-wss-exceptions.aspx http://www.andrewconnell.com/blog/archive/2007/01/25/5855.aspx http://sharepointmagazine.net/technical/development/getting-started-with-sharepoint-programming-simplifying-sharepoint-debugging-by-creating-the-troubleshooting-toolbox

Franci Penov
+1  A: 

.NET Reflector now has a "Pro" version which will allow you to step through and debug just about any third party assembly including the SharePoint assemblies (with the exception of code that is obfuscated).

I actually just downloaded it today, and it looks really good! It integrates with Visual Studio, and is seamless when stepping from your own code into the SharePoint assembly's code.

http://www.red-gate.com/products/reflector/index.htm

Paul Lucas
That only works with .net code though. For debugging problems in native code, it won't do much good sadly :(
Michael Stum