L
Larry Bud
Hi all. I have a webservice that calls a class, does some processing,
and returns some XML.
I would like to have a global exception handler to catch any misc
exceptions. From what I understand, I can create a global.aspx file
in my web service folder, add an Application_Error sub, and any system
exceptions will fire that off.
Right now I'm just setting the value of a local var so I can set a
breakpoint. An exception occurs in my app (a file not found
exception), but I get the raw exception message to the screen.
Application_error is never fired.
Is something wrote or am I totally misunderstanding the use of
Application_Error? I don't want to have catch/try through the
application...
and returns some XML.
I would like to have a global exception handler to catch any misc
exceptions. From what I understand, I can create a global.aspx file
in my web service folder, add an Application_Error sub, and any system
exceptions will fire that off.
Right now I'm just setting the value of a local var so I can set a
breakpoint. An exception occurs in my app (a file not found
exception), but I get the raw exception message to the screen.
Application_error is never fired.
Is something wrote or am I totally misunderstanding the use of
Application_Error? I don't want to have catch/try through the
application...