檢測到在集成的託管管道模式下不適用的ASP.NET設置的解決方法

咱們將ASP.NET程序從IIS6移植到IIS7,可能運行提示如下錯誤:web

  HTTP 錯誤 500.23 - Internal Server Errorspa

  檢測到在集成的託管管道模式下不適用的 ASP.NET 設置。code

  爲何會出現以上錯誤?orm

  在IIS7的應用程序池有兩種模式,一種是「集成模式」,一種是「經典模式」。it

  經典模式 則是咱們之前習慣的IIS 6 的方式。io

  若是使用集成模式,那麼對自定義的httpModules 和 httpHandlers 就要修改配置文件,須要將他們轉移到<modules>和<hanlders>節裏去。module

  兩種解決方法:配置

  第一種方法、配置應用程序池date

  在IIS7上配置應用程序池,而且將程序池的模式改成「經典」,以後一切正常。如圖:程序

  第二種方法、修改web.config配置文件

  例如原先設置

<system.web>

    ............

    <httpModules>
        <add name="MyModule" type="MyApp.MyModule" />
    </httpModules>
    <httpHandlers>
      <add path="*.myh" verb="GET" type="MyApp.MyHandler" />
    </httpHandlers>
</system.web>

  在IIS7應用程序池爲「集成模式」時,改成

<system.web>

    ...........

</system.web>

<system.webServer>
    <modules>
      <add name="MyModule" type="MyApp.MyModule" />      
    </modules>
    <handlers>
      <add name="MyHandler" path="*.myh" verb="GET" type="MyApp.MyHandler" preCondition="integratedMode" />
    </handlers>
    <validation validateIntegratedModeConfiguration="false" />
</system.webServer>

若是想保留原先設置,更改後能夠設置禁止驗證集成模式(validateIntegrateModeConfiguration="false"),是不會產生錯誤的。

相關文章
相關標籤/搜索