I have a .net Windows application in the production that has no access to Visual Studio(standard edition), and the only thing they can install is the express edition, which does not have the Just-In-Time Debugging option (the one which has debug button when it crashes). So I was just wondering if there is a window application debugging tool or something else that I can run or attach to see stacktraces. I also enabled Pbd in my application, but it does not provide any more information, so I can trace my crashes (caused by unhandled exceptions)

Any help or comment would be highly appreciated.

thanks,

link|improve this question

72% accept rate
feedback

6 Answers

up vote 2 down vote accepted

You can also use windbg and sos.dll

link|improve this answer
That can be hard for even intermediate developers. Maybe they can use DebugDiag or other tools to generate a crash dump and analyze with WinDbg. Then a simple "analyze -v" is enough to print out exception information. – Lex Li Oct 29 '09 at 2:30
Is it possible to produce the line number from Windbg? Cause I can get the method name, but not the line number. – paradisonoir Oct 29 '09 at 16:46
Only if you have symbols and I THINK it has to be built in debug mode too. – Matt Wrock Oct 29 '09 at 21:47
feedback

If you are catching exceptions, the Exception object contains the stack trace: Exception.StackTrace. Also, you have access to it with Environment.StackTrace.

EDIT: Added unhandled exception event which will write the exception, including Stack Trace, to the event log.

// Sample for the Environment.StackTrace property
using System;

class Sample 
{
public static void Main() 
{   
	AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(UnhandledExceptions);

    Console.WriteLine("StackTrace: '{0}'", Environment.StackTrace);		
throw new Exception("Fatal Error");
}

static void UnhandledExceptions(object sender, UnhandledExceptionEventArgs e)
{		
	string source = "SOTest";
	if (!System.Diagnostics.EventLog.SourceExists(source))
	{
		System.Diagnostics.EventLog.CreateEventSource(source, "Application");
	}

	System.Diagnostics.EventLog log = new System.Diagnostics.EventLog();
	log.Source = source;

	log.WriteEntry(e.ExceptionObject.ToString(), System.Diagnostics.EventLogEntryType.Error);
}
link|improve this answer
so can I print out some unhanded exception as well? – paradisonoir Oct 28 '09 at 21:43
Yes. You could use logging frameworks to write them to error logs too. – Jon Limjap Oct 29 '09 at 2:39
@paradisonoir - I added an unhandled exception event handler, which writes the log (including stack trace) to the event log. – Philip Wallace Oct 29 '09 at 4:14
feedback

You could try the CLR Profiler

link|improve this answer
Does it give a nice output for the content of Stacktrace? like class and line number, cause my crashes are unhandled ones. – paradisonoir Oct 28 '09 at 21:43
@paradisonoir: Fyi, line numbers are only available if you have the pdb of the assemblies. Else, you'll just get the stack location and method names. – eduncan911 Oct 28 '09 at 22:45
+1 for mentioning a free profiler that solves the OP's problem, namely displaying the stacktrace. For the record, here's a link to CLR Profiler 2.0: tinyurl.com/ClrProfiler2 – galaktor Jun 17 '10 at 8:20
feedback

The stacktraces of .NET application exceptions are logged in your Event Viewer under Applications.

alt text

link|improve this answer
I think you will find they only end up here if you log them yourself, when an exception is thrown! – Philip Wallace Oct 28 '09 at 21:29
I get exceptions in my apps, that I do not handle showing here. – eduncan911 Oct 28 '09 at 21:30
My ASP.net applications also automatically log unhandled exceptions to the eventlog. No code needed. – Cloud Oct 28 '09 at 21:32
Well, I am running a Window Application, so do you think it can be helpful for them as well. My crashes are for unhandled exceptions though – paradisonoir Oct 28 '09 at 21:44
Ah crap, I missed that part (using Windows App). I do not have enough experience to know if windows apps will show up in the event viewer. I would imagine it does. Just take a quick look. – eduncan911 Oct 28 '09 at 22:44
show 3 more comments
feedback

Maybe the EQATEC Tracer could help you out.

link|improve this answer
I started my application with it, but it does not have any output of my stacktrace after a crash occurs. – paradisonoir Oct 29 '09 at 16:45
feedback

http://www.microsoft.com/downloads/thankyou.aspx?familyId=fe6f2099-b7b4-4f47-a244-c96d69c35dec&displayLang=en

http://www.microsoft.com/downloads/thankyou.aspx?familyId=1aef6fce-6e06-4b66-afe4-9aad3c835d3d&displayLang=en

.NET Framework 2.0 SDK ships with Microsoft CLR Debugger. It works similar to Visual Studio debugger (though source files are readonly), so you can give it a try.

link|improve this answer
You can also add global exception handlers to your application. blogs.msdn.com/lexli/archive/2009/04/28/… – Lex Li Oct 29 '09 at 2:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.