我有一个简单的Web服务操作,如下所示:
[WebMethod]
public string HelloWorld()
{
throw new Exception("HelloWorldException");
return "Hello World";
}
然后我有一个客户端应用程序,它使用Web服务,然后调用该操作。显然它会引发异常: - )
try
{
hwservicens.Service1 service1 = new hwservicens.Service1();
service1.HelloWorld();
}
catch(Exception e)
{
Console.WriteLine(e.ToString());
}
在我的catch-block中,我想要做的是提取实际异常的Message以在我的代码中使用它。捕获的异常是SoapException
,这很好,但它的Message
属性是这样的......
System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Exception: HelloWorldException
at WebService1.Service1.HelloWorld() in C:\svnroot\Vordur\WebService1\Service1.asmx.cs:line 27
--- End of inner exception stack trace ---
...而InnerException
是null
。
我想要提取的是Message
(我的示例中的InnerException
文字)的HelloWorldException
属性,有人可以提供帮助吗?如果您可以避免,请不要建议解析Message
的{{1}}属性。
答案 0 :(得分:6)
不幸的是,我不认为这是可能的。
您在Web服务代码中引发的异常被编码为Soap Fault,然后将其作为字符串传递回客户端代码。
您在SoapException消息中看到的只是来自Soap错误的文本,该文本未被转换回异常,而只是存储为文本。
如果您想在错误条件下返回有用的信息,那么我建议您从Web服务返回一个自定义类,该类可以包含“Error”属性,其中包含您的信息。
[WebMethod]
public ResponseClass HelloWorld()
{
ResponseClass c = new ResponseClass();
try
{
throw new Exception("Exception Text");
// The following would be returned on a success
c.WasError = false;
c.ReturnValue = "Hello World";
}
catch(Exception e)
{
c.WasError = true;
c.ErrorMessage = e.Message;
return c;
}
}
答案 1 :(得分:4)
是可能!
服务运营示例:
try
{
// do something good for humanity
}
catch (Exception e)
{
throw new SoapException(e.InnerException.Message,
SoapException.ServerFaultCode);
}
使用该服务的客户:
try
{
// save humanity
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
只需一件事 - 您需要在web.config (服务项目)中设置customErrors mode ='RemoteOnly'或'On'。
关于customErrors发现的信用 - http://forums.asp.net/t/236665.aspx/1
答案 2 :(得分:2)
我之前遇到过类似的事情blogged about it。我不确定它是否适用,但可能是。一旦您意识到必须通过MessageFault对象,代码就足够简单了。就我而言,我知道详细信息包含一个GUID,我可以用它来重新查询SOAP服务以获取详细信息。代码如下所示:
catch (FaultException soapEx)
{
MessageFault mf = soapEx.CreateMessageFault();
if (mf.HasDetail)
{
XmlDictionaryReader reader = mf.GetReaderAtDetailContents();
Guid g = reader.ReadContentAsGuid();
}
}