我已经在C#中为IIS 8.5编写了一个简单的托管HttpModule,并将其安装到全局程序集缓存中(CLR版本4.0.30319)。这被IIS检测到,并且我已将其作为模块安装在应用程序主机级别。
不幸的是,它似乎根本没有被执行。我们只提供静态内容,但由于IIS在集成模式下运行,我的印象是HttpModules是针对所有请求执行的,而不仅仅是ASP.NET管道中的那些请求。
HttpModule已经简化为最简单的级别 - 在创建,处理模块,请求开始和请求结束时进行日志记录,如下所示:
using System;
using System.Web;
using System.Collections.Specialized;
using System.IO;
public class ServerLoggingModule : IHttpModule
{
public ServerLoggingModule()
{
using (StreamWriter file = new StreamWriter(@"C:\LocalIISAuth\logs\iis.log"))
{
file.WriteLine("Created module");
}
}
public string ModuleName
{
get { return "ServerMaskModule"; }
}
public void Dispose()
{
using (StreamWriter file = new StreamWriter(@"C:\LocalIISAuth\logs\iis.log"))
{
file.WriteLine("Disposed of module");
}
}
public void Init(HttpApplication context)
{
context.BeginRequest += new EventHandler(ServerLoggingModule.BeginRequestHandler);
context.EndRequest += new EventHandler(ServerLoggingModule.EndRequestHandler);
}
protected static void BeginRequestHandler(Object sender, EventArgs e)
{
using (StreamWriter file = new StreamWriter(@"C:\LocalIISAuth\logs\iis.log"))
{
file.WriteLine("BeginRequest");
}
}
protected static void EndRequestHandler(Object sender, EventArgs e)
{
using (StreamWriter file = new StreamWriter(@"C:\LocalIISAuth\logs\iis.log"))
{
file.WriteLine("EndRequest");
}
}
}
请求到达模块所在的管道中的点,但似乎只是跳过模块。没有显示错误,页面显示正常。
提前致谢
答案 0 :(得分:1)
事实证明,我们没有启用.NET扩展性Windows功能,导致模块未加载。不幸的是,IIS确实允许你向它添加托管模块,尽管它肯定知道它永远无法启动它!
要使用PowerShell添加这些模块,请使用:
Install-WindowsFeature Web-Net-Ext
Install-WindowsFeature Web-Net-Ext45
答案 1 :(得分:-1)
有时池会以某种方式损坏,重新创建池可以解决此类问题。希望对别人有帮助。