我有一个ASP.net webservice,它调用了一个COM +组件。 COM +组件中的类抛出我想要处理的异常。但是,WebExservice捕获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 :(得分:0)
如果从ServicedComponent的构造函数中抛出异常,则抛出ApplicationException而不是真正的异常。
我会把答案给任何可以告诉我原因的人。