31

我有一个带有 /api 文件夹的 MVC 项目,其中包含我的 Web API 控制器。我想要以下东西:

  • 我的 MVC 站点在发生错误时提供自定义错误页面
  • 我的 Web API 提供默认错误响应(包含异常和堆栈跟踪的 json/xml)

在我的 MVC 站点的 web.config 中,我有一个 httpErrors 节点,并将 errorMode 设置为“自定义”,以便在 404s/500s/etc 时我可以有很好的错误页面。在浏览 MVC 站点时发生:

<httpErrors errorMode="Custom" existingResponse="Replace">
  <remove statusCode="404" subStatusCode="-1" />
  <remove statusCode="500" subStatusCode="-1" />
  <remove statusCode="403" subStatusCode="-1" />
  <error prefixLanguageFilePath="" statusCode="404" path="Content\notfound.htm" responseMode="File" />
  <error statusCode="500" path="/Errors" responseMode="ExecuteURL" />
  <error statusCode="403" path="/Errors/Http403" responseMode="ExecuteURL" /></httpErrors>

但是,使用该配置,API 将在发生错误时提供自定义错误页面,而不是带有异常/堆栈跟踪的 json/xml(这是所需的行为)。

有没有办法将自定义错误配置为仅适用于我的 MVC 站点而不适用于 Web API?这个博客说没有(http://blog.kristandyson.com/2012/11/iis-httperrors-aspnet-web-api-fully.html),但我想听听其他人是否找到了工作自从该博客发布以来。

我想如果没有,我可以为我的 Web API 项目创建一个单独的项目/程序集。这将允许我分别为 MVC 和 Web API 配置 httpErrors,但我不想创建另一个项目,所以我还有另一个 web.config 需要配置。

4

3 回答 3

72

好吧,在让这个问题腌制近一年之后,我又试了一次。这是让我得到我想要的东西的 web.config 魔法:

<!-- inside of <configuration> to allow error
    responses from requests to /api through -->
<location path="api">
    <system.webServer>
      <validation validateIntegratedModeConfiguration="false" />
      <httpErrors errorMode="DetailedLocalOnly" existingResponse="PassThrough" >
        <clear/>
      </httpErrors>
    </system.webServer>
</location>

<!-- original httpErrors, inside of <location path="." inheritInChildApplications="false">
 to serve custom error pages when the MVC site returns an error code -->
<httpErrors errorMode="Custom" existingResponse="Replace">
      <remove statusCode="400" subStatusCode="-1" />
      <remove statusCode="404" subStatusCode="-1" />
      <remove statusCode="500" subStatusCode="-1" />
      <remove statusCode="403" subStatusCode="-1" />
      <error statusCode="400" prefixLanguageFilePath="" path="Content\notfound.htm" responseMode="File"/>
      <error prefixLanguageFilePath="" statusCode="404" path="Content\notfound.htm" responseMode="File" />
      <error statusCode="500" path="/errors" responseMode="ExecuteURL" />
      <error statusCode="403" path="/errors/http403" responseMode="ExecuteURL" />
    </httpErrors>

这里发生的事情的症结在于该<location>节点允许您覆盖在不太具体的路径上所做的设置。因此,虽然我们为 path="." 设置了 errorMode="Custom",但我们使用<location path="api">节点覆盖了我们的 Web API 路径以及其中的 httpErrors 配置。

我以前见过节点,但直到现在我才意识到这是它们的目的。这篇文章更详细地介绍了 IIS/.NET 的配置继承模型,我发现它非常有用:http ://weblogs.asp.net/jongalloway/10-things-asp-net-developers-should-know-about -web-config-inheritance-and-overrides

于 2014-08-28T18:40:21.733 回答
1

我没有对此进行测试,但是如何编写代码来处理您的 MVC 应用程序错误,如下所示http://thirteendaysaweek.com/2012/09/25/custom-error-page-with-asp-net-mvc- 4 / ?

他的代码显示他正在应用程序级别(Global.asax)执行此操作,但我想您也可以以相同的方式在较低级别捕获异常,一种方法用于 MVC,另一种方法用于 Web API。

于 2013-09-22T16:32:06.453 回答
0

什么对我有用:

<httpErrors existingResponse="Auto" defaultResponseMode="Redirect" errorMode="Custom">
  <remove statusCode="403" subStatusCode="-1" />
  <error statusCode="403" subStatusCode="-1" responseMode="Redirect" path="<!--path here-->" />
  <remove statusCode="404" subStatusCode="-1" />
  <error statusCode="404" subStatusCode="-1" responseMode="Redirect" path="<!--path here-->" />
  <remove statusCode="500" subStatusCode="-1" />
  <error statusCode="500" subStatusCode="-1" responseMode="Redirect" path="<!--path here-->" />
</httpErrors>

似乎只需设置 existingResponse="Auto" 就可以完成这项工作。

于 2018-07-13T09:50:43.023 回答