I'm creating an WCF service and I need to implement error handling. In ASP.Net it was possible to centralize error handling in the Application_Error event handler in the global.asax file.
Is there a comparable solution for WCF other than aspnet compatibility mode? I cannot use aspNetCompatibilityEnabled because the transport is not guaranteed to be Http.
Thanks