AppDomain.UnhandledException dose note fired

  • Thread starter Alexander Rudyk
  • Start date
A

Alexander Rudyk

Hi All

I use following code to register event handler

protected void Application_Start(Object sender, EventArgs e)
{
AppDomain.CurrentDomain.UnhandledException += new
UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
}

private void CurrentDomain_UnhandledException(object sender,
UnhandledExceptionEventArgs e)
{
}

I create VS.NET 2003 Web Service from template

Inside test WebMethod I throw exception
And when I call test method VS debugger dose
not step into exception handler. It seems that event handler
dose not called

Any suggestions?

May be I must change some parameters in the Web.config?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,995
Messages
2,570,236
Members
46,822
Latest member
israfaceZa

Latest Threads

Top