如何处理从 asmx 服务返回的错误 500
我有一个标准的 asmx 服务,不允许使用 GET 。
如果我在浏览器中访问 asmx http://mysite/myservice.asmx/myoperation
(GET),我会得到一个堆栈跟踪刷新到客户端,我可以从 fiddler 看到这是一个 500 内部系统错误。我的代码没有被击中。
我要求如果从浏览器访问 URL,则不显示堆栈跟踪,因此我想重定向到已有的自定义错误页面。
我在 global.asax 上有一个 Application_Error 但它在这个特定实例中没有启动。
任何帮助表示赞赏!
I have a standard asmx service on which GET is not allowed.
If I visit the asmx http://mysite/myservice.asmx/myoperation
in the browser (GET) I get a stack trace flushed to the client and I can see from fiddler it's a 500 internal system error. None of my code is being hit.
I have a requirement not to show a stack trace if the url is visited from the browser, so I'd like to redirect to a custom error page I have in place.
I have an Application_Error on the global.asax but its not kicking in in this particular instance.
Any help appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您通过禁用 GET 请求会发生什么
What happens if you disable GET requests via