有没有办法全局处理异常在常规的ASP.NET Web服务(asmx)使用ELMAH像我们在ASP.NET网站?
解决方法
ASP.NET Web服务从不触发Application_Error事件和异常不能由ELMAH在ASP.NET应用程序中全局处理。但是我们可以使用ELMAH“手动”记录异常:
public int WebServiceMethod() { try { ... } catch (Exception ex) { Elmah.ErrorLog.GetDefault( HttpContext.Current).Log(new Elmah.Error(ex,HttpContext.Current)); } }