Michael Stum
Michael Stum

Reputation: 181044

Are there debugging Symbols for Sharepoint?

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

MOSS 2007 SP2.

Upvotes: 3

Views: 915

Answers (3)

Franci Penov
Franci Penov

Reputation: 76011

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.

The actual symbol server is at this URL. However, it is not browsable in a browser, it's useful only in WinDbg.

Upvotes: 4

Michael Stum
Michael Stum

Reputation: 181044

To answer myself: No, there aren't.

Upvotes: 3

Paul Lucas
Paul Lucas

Reputation: 1615

.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

Upvotes: 1

Related Questions