15

我正在开发一个 MVC 应用程序。在我最初的服务草稿中,我在我的一个控制器中使用了这种方法:

    [AcceptVerbs(HttpVerbs.Post)]
    [ActionName("UpdateRelationship")]
    public ActionResult UpdateRelationship(string aParameter)

这很好用。在最新版本中,我被要求将其更改为 PUT 请求,以将其与使用 post 的类似添加机制区分开来。所以我把它改成这样:

    [AcceptVerbs(HttpVerbs.Put)]
    [ActionName("UpdateRelationship")]
    public ActionResult UpdateRelationship(string aParameter)

突然间,我的请求收到了 404,所有这些都来自于更改 AcceptVerbs。从错误的外观来看,似乎 IIS 正在尝试将请求路由为标准 Web 表单页面,而不是使用 MVC 无扩展 url 重写。

谷歌搜索似乎一个常见的原因是浏览器不允许 PUT 请求,但我没有使用浏览器来测试这个 - 我正在使用 Fiddler。所以那里应该没有问题。我也认为正确的设置已经在 web.config 中:

<system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true">
  <remove name="WebDAVModule" />
    </modules>
    <handlers>
        <remove name="UrlRoutingHandler" />
        <remove name="MvcHttpHandler" />
  <remove name="WebDAV" />
        <add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    </handlers>
    <security>
        <requestFiltering>
            <verbs>
                <add verb="PUT" allowed="true" />
            </verbs>
        </requestFiltering>
    </security>
</system.webServer>

那么我错过了什么?

编辑:此代码适用于同事的机器。所以看起来我的本地 IIS 设置有问题。仍然无法解释我需要改变什么 - 有什么想法吗?

干杯,马特

4

3 回答 3

10

我必须完全删除此博客文章中所述的 WebDav 模块

<configuration>
  <system.webServer>
    <handlers>
      <remove name="WebDAV" />
      <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
      <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
      <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
      <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
    <modules>
      <remove name="WebDAVModule" />
    </modules>
  </system.webServer>
</configuration>
于 2014-11-13T15:18:59.870 回答
5

在涉及 WebDAV 的大量搜索和死胡同之后,我在另一个 SO 家庭网站上找到了答案:)

https://serverfault.com/questions/93424/how-to-enable-put-and-delete-in-iis7

于 2012-02-06T15:11:49.880 回答
3

对我们有用的配置如下。

    <system.webServer>
    <modules runAllManagedModulesForAllRequests="false">
        <remove name="UrlRoutingModule" />
        <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" preCondition="" />
    </modules>
    <handlers>
        <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
        <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,POST,PUT,DELETE" type="System.Web.Handlers.TransferRequestHandler" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
</system.webServer>

这是特定于无扩展名的 URL。

顺便说一句,一般建议是设置 runAllManagedModulesForAllRequests = false。

于 2012-08-24T19:40:31.510 回答