WebFaultException 传回 XML 消息而不是字符串?

发布于 2024-09-06 22:49:16 字数 469 浏览 6 评论 0原文

在我的 RESTful 服务层中,出现的任何异常都会被捕获为错误异常。在该FaultException 中,有一条自定义XML 消息,其中包含。我将异常重新打包为 WebFaultException,这样我就可以将响应标头的 HttpStatusCode 设置为 400、401、404 等。

但是,我不想使用 WebFaultException(string message, HttpStatusCode code )。我希望该消息也是 XML 消息。

有人知道如何设置响应消息的 HttpStatusCode 并设置 XML 消息吗?我正在使用 Fiddler 检查我的响应标头以及从服务发出的任何消息。

In my RESTful services layer, any exceptions that bubble up to me are caught as Fault Exceptions. Within that FaultException, there's a custom XML message that contains <errorNumber>, <errorCode> and a <message>. I re-package the exception as a WebFaultException so I can set the HttpStatusCode for the response header to 400, 401, 404, etc.

However, I don't want to use WebFaultException<string>(string message, HttpStatusCode code). I want the message to also be an XML message.

Anyone seen how to set the HttpStatusCode of the response message AND set an XML message? I'm using Fiddler to examine my response headers and any messages that come up from the service.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尹雨沫 2024-09-13 22:49:16

为了解决这个问题,我所做的就是创建一个具有简单属性的新类 MyException 并使用 WebFaultException 并且它工作得很好。我在以下链接中找到了解决方案: http://www.c -sharpcorner.com/UploadFile/ankithakur/ExceptionHandlingWCF12282007072617AM/ExceptionHandlingWCF.aspx

What I did to get around this was create a new class MyException with simple properties and used WebFaultException<MyException> and it works nicely. I found the solution at the following link: http://www.c-sharpcorner.com/UploadFile/ankithakur/ExceptionHandlingWCF12282007072617AM/ExceptionHandlingWCF.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文