如何通过在 json asmx 客户端/服务器调用中引发异常来发送错误?
我有一个可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了类似的问题,通过将以下内容添加到我的网络配置中解决了
我的自定义异常现在按预期返回,无论消费者如何。
参考值
阿杰
I had a similar issue that was solved by adding the following to my web config
My custom exceptions are now returned as expected regardless of consumer.
Rgds
AJ