asp.net – 用于集成的IIS 7的自定义HttpModule

我遇到了我构建的自定义错误处理程序的麻烦.它应该是一个HttpModule,但当我将它添加到我的web.config的system.webServer / modules标签时,它不会被启动.

这是我的web.config部分:

<system.webServer>
  <modules>
    <add name="AspExceptionHandler" 
         type="Company.Exceptions.AspExceptionHandler,Company.Exceptions" 
         preCondition="managedHandler" />
  </modules>
</system.webServer>

这是我的HttpModule中的代码

using System;
using System.Web;
using Company.Settings;
using System.Configuration;

namespace Company.Exceptions
{
  public class AspExceptionHandler : IHttpModule
  {
    public void Dispose() { }

    public void Init(HttpApplication application)
    {
      application.Error += new EventHandler(ErrorHandler);
    }

    private void ErrorHandler(object sender,EventArgs e)
    {
      HttpApplication application = (HttpApplication)sender;
      HttpContext currentContext = application.Context;

      // Gather information5
      Exception currentException = application.Server.GetLastError();
      String errorPage = "http://www.mycompaniesmainsite.com/error.html";

      HttpException httpException = currentException as HttpException;
      if (httpException == null || httpException.GetHttpCode() != 404)
      {          
        currentContext.Server.Transfer(errorPage,true);
      }
      else
      {
        application.Response.Status = "404 Not Found";
        application.Response.StatusCode = 404;
        application.Response.StatusDescription = "Not Found";
        currentContext.Server.Transfer(errorPage,true);
      }
    }
  }
}

有人可以向我解释我的错误,以及IIS 7集成管理管道模式的工作原理吗?因为我发现的大部分答案都是为IIS 6配置HttpModule.

解决方法

从我所看到的你走在正确的轨道上.您是否确定您的站点的应用程序池设置为Managed Pipeline模式?

此外,如果您使用内置的Visual Studio Web服务器(Cassini)进行测试,那么< system.webServer>部分将被忽略.如果您希望从那里加载模块,则需要IIS7或IIS7.5 Express.

相关文章

项目要求通过网站上传大文件,比如视频文件,通过摸索实现了文件分片来上传,然后后台进行合并。 使用了...
安装新版本的Nginx(vim /etc/yum.repos.d/nginx.repo) [nginx-stable] name=nginx stable repo baseu...
什么是 SignalR&#160;ASP.NET Core ASP.NET Core SignalR 是一种开放源代码库,可简化将实时 web 功...
在Windows下使用Docker,我们选择Docker Desktop这个软件,非常方便。 ## Docker Desktop介绍及安装 Do...
项目开始设计的是运行在windows下,所以一开始采用的是windows服务模式来获取多媒体文件信息,后来要求...
银河麒麟高级服务器操作系统V10是针对企业级关键业务,适应虚拟化、云计算、大数据、工业互联网时代对主...