当服务使用WCF返回500错误时捕获响应
本文关键字:错误 响应 返回 服务 WCF | 更新日期: 2023-09-27 17:59:12
我正在使用REST(使用WebHttpBinding
和WebHttpBehavior
)从第三方web服务获取数据。当我在querystring中传递一个无效参数时,服务会以500状态响应并描述问题。回复如下:
HTTP/1.1 500 Internal Server Error
Date: Tue, 14 Jun 2011 16:12:48 GMT
... more headers
<Error>Invalid integer value for ID</Error>
我真的希望能够捕捉到那个错误信息。我的WCF客户端如下所示:
public class DataClient : ClientBase<IDataClient>, IDataClient
{
public DataClient (string endpointAddress)
: base(new WebHttpBinding(), new EndpointAddress(endpointAddress))
{
this.Endpoint.Behaviors.Add(new WebHttpBehavior());
}
public string GetData(string id)
{
// This is where the exception is thrown
return base.Channel.GetData(id);
}
}
当我捕捉到抛出的异常时,就找不到该数据了。它只是说,"System.ServiceModel.CommunicationException:内部服务器错误"。
我尝试创建一个自定义行为并添加了一个消息检查器,但在抛出异常之前,我的自定义消息检查器代码不会执行(如果没有抛出异常,它会执行)。
我终于想通了。我需要创建一个自定义行为并添加一个消息检查器。我只需要在WebHttpBehavior
之前添加我的自定义行为。然后我可以查看整个响应,并抛出我自己的异常以及其中的所有数据!
(无法让我的测试项目真正发送HTTP 500,似乎只有在我不希望的时候才会这样做;-)
如果这对您没有帮助,请尝试包装客户端服务调用,并检查调试器中的response
,看看它是否包含您试图捕获的错误字符串。
using (new OperationContextScope(service1.InnerChannel))
{
try
{
result = service1.GetData("5");
}
catch (System.Exception e)
{
string msg = e.ToString();
}
HttpResponseMessageProperty response = (HttpResponseMessageProperty)
OperationContext.Current.IncomingMessageProperties[HttpResponseMessageProperty.Name];
}