在WebService 中,使用IHttpHand 捕獲不到全局異常,這時候,須要使用 SoapExtension (此方法僅對引用有效,對使用ajax等方法訪問webservice 無效)web
代碼以下ajax
public class SoapExceptionHandler : System.Web.Services.Protocols.SoapExtension { public override object GetInitializer(Type serviceType) { return null; } public override object GetInitializer(System.Web.Services.Protocols.LogicalMethodInfo methodInfo, System.Web.Services.Protocols.SoapExtensionAttribute attribute) { return null; } public override void Initialize(object initializer) { } public override void ProcessMessage(System.Web.Services.Protocols.SoapMessage message) { if (message.Stage == SoapMessageStage.AfterSerialize) { if (message.Exception != null) { AppLog.Info(message.Exception.InnerException); //LogUtil.Log.Error(message.Exception.InnerException); } } } }
同時,須要在web.config裏面進行配置ide
找到<webServices> 節點測試
添加以下配置spa
<soapExtensionTypes> <add type="Eway.HR.WebService.SoapExceptionHandler, Eway.HR.WebService" priority="1" group="High" /> </soapExtensionTypes>
這時候,若是直接使用vs直接用網頁打開進行調試,是不會有效果的,由於這種方式不是一個完整的soap,調試
可使用 WebserviceStudio 進行測試,下載地址:https://archive.codeplex.com/?p=WebserviceStudiocode