Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> 電腦軟件教程 >> 服務器技術 >> 關於服務器 >> IIS 7.5應用程序池集成模式和經典模式的區別

IIS 7.5應用程序池集成模式和經典模式的區別

日期:2017/2/8 10:17:21      編輯:關於服務器
於最近公司服務器上需要將iis的應用程序池全部都升級到4.0的框架,當然選擇4.0就肯定使用集成模式部署。升級過程中出現了比較多的問題,前面文章也提到過幾個。這次就主要介紹下httpHandler 和 httpModule 在集成和經典模式下的區別。很多文件上傳等都是需要使用到httpModule去實現。我今天就出現了NeatUpload在iis7.5下出現未將對象引用到設計實例的錯誤。所以用httpModule作為測試案例。
  1. 新建測試網站WebApplication,加入MyHttpModule類實現IHttpModule接口,主要目的是測試程序是否經過了HttpModule,經過的在頁面輸出HttpModule字符。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public class MyHttpModule : IHttpModule {     public void Dispose()     {     }       public void Init(HttpApplication context)     {         context.BeginRequest += context_BeginRequest;     }       protected void context_BeginRequest(object sender, EventArgs e)     {         var context = sender as HttpApplication;         context.Response.Clear();         context.Response.Write("HttpModule");         context.Response.End();     } }

      

  2. 在IIS7.5部署網站,首先使用經典模式應用程序池。在web.config的  <system.web> 的子節點<httpModules> 加入<add name="MyHttpModule" type="WebApplication.MyHttpModule, WebApplication"/> 1 2 3 4 5 6 7 8 9 10 <httpHandlers>    <remove verb="*" path="*.asmx"/>    <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>    <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>    <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>  </httpHandlers>  <httpModules>    <add name="MyHttpModule" type="WebApplication.MyHttpModule, WebApplication"/>    <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  </httpModules> 訪問網站可以發現頁面輸出如下,說明程序經過了HttpModule

  3. 直接切換應用程序池成集成模式會發現頁面輸出為空。證明程序沒有經過HttpModule。那在集成模式下HttpModule如何才能執行呢? 之前部署URLRewriter的時候查資料只知道需要 <system.webServer> <modules>注冊HttpModule。仔細查看配置文件會發現有一段如下英文.意思大概就是iis7版本的設置。之前版本無需設置。

    <!--
    The system.webServer section is required for running ASP.NET AJAX under Internet
    Information Services 7.0. It is not necessary for previous version of IIS.
    -->
    這樣就大概明白意思是iis7.0之後有部分web配置移動到system.webServer中。查閱相關得到答案確實如此 詳細資料見 

    於是在<system.webServer> <modules>中加入配置如下,刷新頁面,頁面能夠輸出字符HttpModule,證明成功了。

    <system.webServer>   <validation validateIntegratedModeConfiguration="false"/>   <modules>     <remove name="ScriptModule" />     <add name="MyHttpModule" type="WebApplication.MyHttpModule, WebApplication"/>     <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>   </modules> 由於在升級過程成有一個站點出現  HTTP 錯誤 500.22 - Internal Server Error 檢測到在集成的托管管道模式下不適用的 ASP.NET 設置 

    當時在比較急的情況下就直接刪除了  <system.web> 的子節點<httpModules> 程序正常運行。後面通過仔細和正常的站點對比是發現是缺少 <validation validateIntegratedModeConfiguration="false"/> 這個導致,這個主要作用是設置不檢測 <system.web>中的配置

    經過這今天的折騰終於是對iis7.5上的部署有了一定了解了。

Copyright © Windows教程網 All Rights Reserved