如何通过在 json asmx 客户端/服务器调用中引发异常来发送错误?

发布于 2024-10-25 19:00:47 字数 190 浏览 0 评论 0原文

我有一个可以使用 SOAP 或 JSON 调用的 asmx Web 服务。当我在方法中抛出自定义异常时(例如告诉用户他/她发送了无效密码),如果是 SOAP 调用,它们会正确发送到客户端。但如果它是一个 JSON 调用,它似乎总是一个标准的 500 内部服务器错误 - 无论我抛出什么异常。

如果用户使用 JSON 调用服务,如何发送正确的错误消息?

I have an asmx web service that can be called using either SOAP or JSON. When I throw custom exceptions in a method (for instance for telling user he/she sent an invalid password) they are properly sent to client if it's a SOAP call. But if it is a JSON call it seems like it will always be a standard 500 Internal Server Error - no matter what exception I am throwing.

How do I send proper error messages if user calls service using JSON?

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

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

发布评论

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

评论(1

你是我的挚爱i 2024-11-01 19:00:47

我遇到了类似的问题,通过将以下内容添加到我的网络配置中解决了

<system.web.extensions>
<scripting>
<webServices>
    <jsonSerialization maxJsonLength="2147483644"></jsonSerialization>
</webServices>
</scripting>

我的自定义异常现在按预期返回,无论消费者如何。

参考值
阿杰

I had a similar issue that was solved by adding the following to my web config

<system.web.extensions>
<scripting>
<webServices>
    <jsonSerialization maxJsonLength="2147483644"></jsonSerialization>
</webServices>
</scripting>

My custom exceptions are now returned as expected regardless of consumer.

Rgds
AJ

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