0

我得到了一個調用COM +組件的ASP.net webservice。 COM +組件中的類引發我想要處理的異常。但是ApplicationException被webbservice捕獲,而不是真正的異常。COM +:ApplicationException而不是拋出的異常

這是爲什麼?

編輯:異常詳細

System.ApplicationException: Error in the application. 
    at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) 
    at System.EnterpriseServices.Thunk.Proxy.CoCreateObject(Type serverType, Boolean bQuerySCInfo, Boolean& bIsAnotherProcess, String& uri) 
    at System.EnterpriseServices.ServicedComponentProxyAttribute.CreateInstance(Type serverType) 
    at System.Runtime.Remoting.Activation.ActivationServices.IsCurrentContextOK(RuntimeType serverType, Object[] props, Boolean bNewObj) 
    at mywebbservice.Batplanering.Behorighet(String sprak) in D:\utv\Bat\Main4\Src\mywebbservice\planering.asmx.vb:line 3542 

回答

0

ApplicationException的異常是否從ServicedComponent中的構造函數中拋出的被拋出,而不是真正的例外。

我會將答案授予任何能告訴我爲什麼的人。