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?
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?