vote up 4 vote down star
2

One of our .NET 2.0 application started to just randomly disappear. There are no records in the Event log, Dr. Watson doesn't generate crash dump, no nothing...

How to troubleshoot this application?

flag

Do you make any p/invoke calls? – hjb417 Oct 20 at 13:19
Not directly. We use Crystal Reports, which can make such calls. Anyway, application worked for a year without problems. – alex Oct 20 at 13:20
Do you use any COM components? – Dave Downs Oct 20 at 13:25
@Dave. Not directly. – alex Oct 20 at 13:34
1  
Is just the UI disappearing, or is the processing being killed off completely? – Agent_9191 Oct 20 at 13:36
show 2 more comments

5 Answers

vote up 4 vote down

1) Attach an event handler to AppDomain.UnhandledException event and log the exception object.

AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

2) Attach a thread exception handler

Application.ThreadException +=
  new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);

For WPF and Silverlight apps you use more exception handlers, e.g. Application.DispatcherUnhandledException and Application.UnhandledException respectively, but these are not of interest to you in this scenario. I include them for completeness.

link|flag
It is handled - no log record. – alex Oct 20 at 13:21
vote up 2 vote down

Modify the code to include log steps after each relevant section, and then check the log file to see where its going.

If it doesn't even start, then that'll tell you something too...

link|flag
vote up 1 vote down

More possibilities:

link|flag
vote up 1 vote down

We had a similar issue. We had an event for the AppDomain.UnhandledException but it was even skipping this. It turned out to be an SystemAccessViolation caused when we tested the clipboard contents.

If it's similar (EG skipping AppDomain.UnhandledException event) then I'd suggest log everything around interop and 'hostile' data calls from outside of your process and code review it all. It took us several weeks to track it down and a one line change to fix it.

Also, turn on MDAs in VS and run your program with it and see if you get errors.

link|flag
vote up 0 vote down

You could try using Elmah, this will log almost all unhandled exceptions:

http://www.hanselman.com/blog/ELMAHErrorLoggingModulesAndHandlersForASPNETAndMVCToo.aspx

link|flag

Your Answer

Get an OpenID
or

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