I want to log site traffic in .Net using an HttpModule. in the HttpContext.EndRequest event handler I'm storing the Response.ContentType property value to the database. On my local dev instance it is storing the correct content types i.e: image/gif for .gif, text/html for .aspx etc. However on an IIS 6 server it always stores the content-type text/html for any type of file. There is a wildcard ISAPI mapping on the IIS 6 website ensuring that all requests are routed through ASP.Net.
Why would the log always output text/html on the IIS 6 server but the appropriate content-type on my dev machine?
The application configuration in IIS 6:

The code to log the content-type:
public void Init(HttpApplication context)
{
log4net.Config.XmlConfigurator.Configure();
context.EndRequest += new EventHandler(context_EndRequest);
}
void context_EndRequest(object sender, EventArgs e)
{
HttpApplication app = sender as HttpApplication;
HttpContext context = app.Context;
log.DebugFormat("content-type:{0}", context.Response.ContentType);
}
