Top "Httpmodule" questions

ASP.

How to log request inputstream with HttpModule, then reset InputStream position

I am trying to log the contents of an http request, using an IHttpModule like so: public class LoggingModule : IHttpModule { …

.net httpmodule inputstream
Programmatically register HttpModules at runtime

I'm writing an app where 3rd party vendors can write plugin DLLs and drop them into the web app's bin …

asp.net web-config httpmodule
VS2010 development web server does not use integrated-mode HTTP handlers/modules

I am developing an ASP.NET MVC 2 web site, targeted for .NET Framework 4.0, using Visual Studio 2010. My web.config contains …

visual-studio httphandler web-config httpmodule
Debugging an httpmodule on the asp.net development server

I want to integrate some http modules in my asp.net application (v 3.5, visual studio 2008) and I'm not sure how …

asp.net httpmodule
IIS7: Differences between static and dynamic content compression

IIS supports two types of compression: static content compression and dynamic content compression. According to applicationHost.config, they are handled …

iis-7 gzip httpmodule
How would an HttpModule for Custom Authentication interact with Windows Authentication?

I am trying to create a custom HttpModule which controls which users can view a site. I am trying to …

c# asp.net iis-7 windows-authentication httpmodule
Help reading JSON from HttpContext.InputStream

I have created a HttpModule to capture requests for auditing purposes. For Ajax requests to a web method I would …

asp.net json xmlhttprequest httpmodule inputstream
Advanced: How many times does HttpModule Init() method get called during application's life?

Web application initialization is as follows: As we know when IIS receives the first request for a particular Asp.net …

asp.net events httpmodule
IIS7 Application Request Routing (arr reverse proxy) combined with managed module - time out

I am trying to build a proxy that would serve requests to an internal site (hiding the origin) but at …

iis-7 timeout httpmodule reverse-proxy
HTTP module vs action filter in asp.net-mvc

I am developing an application in asp.net MVC3 and I have the following questions: When should I write an …

asp.net-mvc httpmodule action-filter