9
votes
4answers
335 views
What’s the risk of deploying debug symbols (pdb file) in a production environment?
I have an application that logs exception strack traces and I wanted those stack traces to include file names and line numbers when deployed in production. I figured out how to deploy the debug …
5
votes
1answer
42 views
Why are some java libraries compiled without debugging information
Hi all,
I've noticed recently that there's a few java libs (the JDK, joda time, iText) that compile without some/all of the debugging information. Either the local variable info is missing, or the …
4
votes
4answers
555 views
Problem debugging .NET code with MS’s Symbol Server
Hi folks,
when i debug my ASP.NET web site code using the Microsoft debug symbol's for .NET .. i keep getting this silly 'result' for most of the variables when i'm debugging .NET framework code …
2
votes
3answers
351 views
I want to debug (set a breakpoint in) System.Web.Mvc.DefaultControllerFactory, is that possible?
I have a project that references the System.Web.Mvc assembly in the GAC. I also have the ASP.NET MVC source code from Codeplex. I want to get a better understanding of the DefaultControllerFactory by …
2
votes
4answers
370 views
How can i debug this line of code in Visual Studio?
Hi folks, i have the following line of code in VS2008.
VirtualPathData virtualPathData =
RouteTable.Routes.GetVirtualPath(_viewContext.RequestContext,
"Home",
…
2
votes
2answers
2k views
Getting rid of “There is no source code available for the current location”
Ok, this is my own fault, but I can't seem to rescue myself.
Whenever I try to step into a class that has fields with assignments calling into .NET code, I get a dialog box that contains this text:
…
1
vote
3answers
119 views
How to get rid of exceptions thrown by the .NET framework
In a recent project I'm using a lot of databinding and xml-serialization. I'm using C#/VS2008 and have downloaded symbol information for the .NET framework to help me when debugging.
The app I'm …
1
vote
2answers
90 views
Visual Studio Debugger - decrease time to attach & load symbols
Generally speaking, what are your recommendations on this? Currently takes close to 10 minutes for me to attach to a locally running IIS process hosting SharePoint 2007.
1
vote
1answer
69 views
Can I get debug symbols for flash player? Or any other way to get support for flash?
The company I am working for has a flash component (using flex and cs4) that crashes intermittently in chrome, FF and IE. (so far only win32 platforms)
I submitted a bug report to Adobe but have not …
1
vote
1answer
507 views
Prevent Visual Studio from trying to load symbols for a particular DLL
I have Visual Studio 2005 set up to use Microsoft's symbol servers. I also have UltraMon installed, which injects a hook DLL into every process. Whenever I start debugging my MFC application, VS …
1
vote
2answers
276 views
Does Visual Studio have debug symbols available?
I'd like to track down a possible bug in Visual Studio, but that's awfully hard without the debug symbols for Visual Studio itself. Does Microsoft make these available?
0
votes
1answer
16 views
Is showing the Exception StackTrace useful in a RELEASE assembly or only a DEBUG .dll
I've gone to some lengths to improve the error handling in my webservice - in particular, showing the StackTrace as in this example:
catch (Exception ex)
{
EventLog log = new …
0
votes
0answers
9 views
Our application’s symbols are not being found
We have a windows c++ executable which is occasionally hanging on shutdown on the deployment platform.
We have the generated pdb file in the same directory as the exe file and I have checked they …
0
votes
1answer
44 views
How can I get the correct symbols for microsoft’s dlls\assemblies if I don’t have an internet connection?
I can't connect the computer to the internet because of security reasons. therefore, I can't use the symbol server. I've installed the symbols pack for windows xp sp2 but some of the PDB's do not …
0
votes
1answer
109 views
Stepping over method without symbols - How to step into?
Using Visual Studio 2008 SP1 and a VB.NET project; I have some code which i cannot step into. The Immediate Window shows the message
"Stepping over method without symbols 'Some.Namespace.Here'"
How …
