Debugging SharePoint 2007 Code - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:56:00Z http://stackoverflow.com/feeds/question/145361 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/145361/debugging-sharepoint-2007-code 4 Debugging SharePoint 2007 Code Kyle Trauberman 2008-09-28T06:38:45Z 2008-09-29T05:25:29Z <p>How do you debug your SharePoint 2007 code? Since SharePoint runs on a remote server, and I'm developing on a windows xp machine (with the necessary .dll files copied into my GAC), I haven't had much luck with finding easy ways to debug. Breakpoints don't work, etc.</p> <p>The best way I've come up with is to enable page tracing in the web.config file, write trace messages throughout my code, and access trace.axd whenever I need to debug.</p> <p>Does anyone have any better suggestions for debugging? Am I missing something?</p> http://stackoverflow.com/questions/145361/debugging-sharepoint-2007-code/145365#145365 2 Answer by Mitch Wheat for Debugging SharePoint 2007 Code Mitch Wheat 2008-09-28T06:42:46Z 2008-09-28T06:42:46Z <p>From <a href="http://www.andrewconnell.com/blog/archive/2008/06/11/SharePoint-Debugging-and-Logging-Tips-and-Tricks.aspx" rel="nofollow">Andrew Connell's blog post</a> on the subject:</p> <blockquote> <p>Attaching the debugger to GAC'd assemblies: "Why aren't my breakpoints being hit?!?!" Ever been there? Me too... what a PITA that is! What's going on? Well, the assemblies are in the GAC and the Visual Studio debugger can't see the debugging symbols (aka: *.pdb). Unless you've gone through the trouble of setting up a symbol store where all your PDBs are going, you'll need to put the debugging symbols in the same location as the assembly. The trick is finding the folder that contains your DLL in the GAC.</p> <p>The c:\windows\assembly folder is not a real folder, it's a virtual folder. To get to the REAL folder, do the following:</p> <ul> <li>Start » Run</li> <li>%systemroot%\assembly\gac [ENTER]</li> </ul> <p>This will open the GAC folder. Now, poke around until you find a folder that looks like this (you might need to jump up one folder and dive into the MSIL folder): [assembly file name -.DLL extention][assembly version in format of <strong>> #.#.#.#]</strong>[assembly public key token].**</p> <p>When you find that folder, open it up and you'll see your assembly. Copy the PDB file to that folder and then attach the debugger for some debugging joy!</p> </blockquote> http://stackoverflow.com/questions/145361/debugging-sharepoint-2007-code/145434#145434 1 Answer by olavk for Debugging SharePoint 2007 Code olavk 2008-09-28T07:48:47Z 2008-09-28T07:48:47Z <p>I recommend you develop on a Windows 2003 server with Sharepoint. It's a hassle to debug on a remote server. You can do it in a virtual machine with VMWare or Virtual PC, if you have XP on your workstation.</p> http://stackoverflow.com/questions/145361/debugging-sharepoint-2007-code/145447#145447 1 Answer by naspinski for Debugging SharePoint 2007 Code naspinski 2008-09-28T08:03:06Z 2008-09-28T08:03:06Z <p>Virtual machine is the only way to go. You don't want to dedicate a whole machine to dev (unless you have extras) and developing on your production server is just asking for trouble. I prefer VMWare, but there are others that work just as well.</p> <p>Tracing works well as normal debugging isn't really an option. </p> <p>What else I do is try to develop all the logic (the stuff that isn't SharePoint dependent) on just a regular asp.net site, then integrate it into SharePoint <em>after</em> it's tested.</p> <p>Hope that makes sense.</p> <p>Are you talking about developing web parts? Custom pages? Something else?</p> http://stackoverflow.com/questions/145361/debugging-sharepoint-2007-code/146067#146067 2 Answer by Michael Stum for Debugging SharePoint 2007 Code Michael Stum 2008-09-28T15:16:33Z 2008-09-28T15:16:33Z <p>The best way (even the one endorsed by Microsoft) is to have a Windows 2003 Server with Sharepoint as your local Development machine.</p> <p>See also <a href="http://stackoverflow.com/questions/11676/creating-a-development-environment-for-sharepoint">this topic</a>.</p> http://stackoverflow.com/questions/145361/debugging-sharepoint-2007-code/147629#147629 2 Answer by Ryan for Debugging SharePoint 2007 Code Ryan 2008-09-29T05:25:29Z 2008-09-29T05:25:29Z <p>Don't put your assemblies into the GAC, put them in the bin directory - then you can use the VS remote debugger. Google creating .WSP files for distribution.</p> <p>This also has the advantage that its easier to copy your new builds onto the server after compilation (post-build step) and its also the recommended way to increase security.</p>