Is there a way to globally handle exceptions in regular ASP.NET Web Service (asmx) using ELMAH like we do it in ASP.NET web site ?
|
feedback
|
|
ASP.NET web services never fire
| |||||||
feedback
|
|
You can use a SoapExtension to do this :
You register this in the web.config with the following lines :
This will give you access to the HttpContext and SoapMessage objects which should give you all of the details you need about what was being called. I think the exception you retrieve at this stage will always be a SoapException and that the bit you are interested in is probably the inner exception. | |||||
feedback
|