如何处理从 asmx 服务返回的错误 500

发布于 2024-10-11 05:17:43 字数 310 浏览 4 评论 0原文

我有一个标准的 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 技术交流群。

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

发布评论

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

评论(1

堇年纸鸢 2024-10-18 05:17:43

如果您通过禁用 GET 请求会发生什么

<configuration>
   <system.web>
      <webServices>
         <protocols>
            <remove name="HttpPost"/>
            <remove name="HttpGet"/>
            <remove name="Documentation"/>
         </protocols>
      </webServices>
   </system.web>
</configuration>

What happens if you disable GET requests via

<configuration>
   <system.web>
      <webServices>
         <protocols>
            <remove name="HttpPost"/>
            <remove name="HttpGet"/>
            <remove name="Documentation"/>
         </protocols>
      </webServices>
   </system.web>
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文