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 ?
You can use this code
try{ // your code in here } catch (Exception ert) { Elmah.ErrorSignal.FromCurrentContext().Raise(ert); }