Tagged Questions
The httpmodule tag has no wiki summary.
37
votes
4answers
16k views
Can I access session state from an HTTPModule?
I could really do with updating a user's session variables from within my HTTPModule, but from what I can see, it isn't possible.
UPDATE: My code is currently running inside the OnBeginRequest () ...
28
votes
5answers
4k views
IHttpHandler vs IHttpModule
My question is simple (although the answer will most likely not be): I'm trying to decide how to implement a server side upload handler in C# / ASP.NET.
I've used both HttpModules (IHttpModule ...
16
votes
4answers
4k views
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 directory. I want the ability for these plugins to be able to register their own HttpModules if ...
13
votes
7answers
661 views
Can .NET intercept and change css files?
UPDATE 1:
I have now setup IIS6 so .NET can handle calls to .css files. What do I have to do now to get it to change css files based on the referal url? So if the referal url is http://intranet/, ...
12
votes
8answers
1k views
ASP.NET: Your most used httpmodules
Interested in description of your most used ASP.NET httpmodules that solved a specific problem for your webapp.
Best practices and in-the-field usages are welcome.
12
votes
3answers
11k views
IIS6 + HttpModule: This operation requires IIS integrated pipeline mode
I am using IIS6, I've written an HttpModule, and I get this error? After googling the web I find that this problem is caused by the .NET framework 3.5, so I put this on a machine where I didn't ...
10
votes
4answers
1k views
Preventing upload of large files in ASP.NET 4.0
We'd like to restrict the maximum upload file size in our web site. We've already set the appropriate limits in our web.config. The problem we're encountering is if a really large file (1 GB, for ...
9
votes
3answers
2k views
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 application resource, IIS creates an instance of a HttpApplication (defined in ...
9
votes
2answers
4k views
HTTPModule Event Execution Order?
Does anyone know of a site or page, or know the order of execution for the events of the HTTPApplication class for HTTPModule event execution?
I found the MSDN Documentation for all of the events, ...
8
votes
2answers
2k views
What are some best practices for managing background threads in IIS?
I have written an HttpModule that spawns a background thread. I'm using the thread like a Scheduled Task that runs in-process, which is really handy.
What are best practices for keeping track of ...
7
votes
5answers
739 views
asp.net file downloading - track downloaded size
I am trying to design a system for something like this with ASP.net/C#.
The users pay for downloading some content (files- mp3s/PDFs,doc etc).I should be able to track the number of bytes downloaded ...
7
votes
4answers
3k views
HttpModule Init method is called several times - why?
I was creating a http module and while debugging I noticed something which at first (at least) seemed like weird behaviour.
When i set a breakpoint in the init method of the httpmodule i can see that ...
7
votes
3answers
938 views
How to register HttpHandler for all subfolders in Asp.Net?
I would like to register an HttpHandler to include all subfolders of a root folder regardless of how far down they are nested. I would have expected the behavior with the below code to do just that ...
6
votes
2answers
586 views
Server.TransferRequest() and the http status code
I had to implement a custom HttpModule to handle a 404 error in Sharepoint.
It listens for the PreSendRequestContent event, and looks for a 404 status code. If one is found it does a TransferRequest.
...
6
votes
1answer
467 views
IIS 7.5 ASP.NET HttpModule - Setting Response.Filter results in chunked encoding
I'm trying to create a HttpModule that changes the Response.Filter like so
(for this demonstration just set the filter back to itself):
public class ContentTrafficMonitor : IHttpModule
{
public ...
6
votes
2answers
772 views
What is the best way to upload files with ASP.NET MVC 2?
What is the best method for uploading files of variable size (either very large or very small to an ASP.NET MVC 2 application file system)?
This is what I understand so far:
It seems like there ...
6
votes
2answers
1k views
HttpModule not running with Visual Studio
I am using an HttpModule to do some URL shortening on my site. I am using Visual Studio 2008 and IIS 7, and .Net 3.5.
When the module is specified in the system.webServer element of web.config, and ...
5
votes
1answer
125 views
Is there a better way to get the proper modules section from the web.config?
The code I've used to get the HTTP Modules is basically
HttpModulesSection modules = ((SystemWebSectionGroup)config.GetSectionGroup("system.web")).HttpModules;
// Depending on what we need to do...
...
5
votes
1answer
329 views
Ninject Intermittent exception thrown related to OnePerRequestModule
I just upgraded an existing implementation of Ninject from 1.5 to 2.0. I'm now seeing an intermittent exception getting thrown when many requests are happening in a short period of time.
Here's the ...
5
votes
2answers
673 views
Custom basic authentication fails in IIS7
I have an ASP.NET MVC application, with some RESTful services that I'm trying to secure using custom basic authentication (they are authenticated against my own database). I have implemented this by ...
5
votes
1answer
429 views
How to modify markup in ASP.NET without using Response Filter
Since ASP.NET response filtering and post-cache substitution are not compatible, I need an alternative way of filtering output. Reference: http://support.microsoft.com/kb/2014472
Is there any way to ...
5
votes
2answers
902 views
How is the order of execution for HttpModules determined?
Suppose that both FirstModule and SecondModule handle the Application_BeginRequest event. Will it execute in the order defined in the web.config?
<httpModules>
<add ...
5
votes
5answers
2k views
IoC Dependancy injection into Custom HTTP Module - how? (ASP.NET)
I have a custom HTTP Module. I would like to inject the logger using my IoC framework, so I can log errors in the module. However, of course I don't get a constructor, so can't inject it into that. ...
5
votes
4answers
4k views
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 to debug or use such modules while debugging in the asp.net development server that ...
5
votes
2answers
1k views
What's the performance difference between HttpModule and Global.aspx?
I have made a web app where I am using a module which redirects without "www" urls (http://example.com/) to with "www" urls (http://www.example.com/). But as I am on shared hosting server, where I ...
4
votes
2answers
165 views
Having an issue with the default response Content-Type
I have a website that has the following Doctype:
<!DOCTYPE HTML>
<html>...</htm>
I discovered an issue causing certain mobile browsers to break (blackberries and older androids). ...
4
votes
0answers
767 views
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 the same time inspect the packets and asynchronously post-process them.
E.g. let's say all SOAP ...
4
votes
2answers
422 views
How to protect application pools from session serialization exceptions?
We're using an Out-of-Process Session Provider (ScaleOut) for an ASP.NET application and we've noticed that when an object that's not correctly setup for de-serialization inadvertently makes its way ...
4
votes
1answer
194 views
Is it possible to modify the content of HttpRequest POST in an IIS HttpModule?
I need to modify the content of certain HttpRequests (SSAS connection strings) in IIS. Basically, I need to add an element to the SOAP contained in the request.
My approach so far has been to add a ...
4
votes
1answer
526 views
How could I insert a string into the response stream anywhere I want?
There may be an easy way to do this but I can't see it...
I created a simple Http Module that starts a timer on the PreRequestHandler and stops the timer on the PostRequestHandler to calculate the ...
4
votes
3answers
2k views
Hook into Application_Start in a HttpModule
I’m implementing a simple HttpModule, where I want some code to run when the web application is started. But I’m surprised to find that the Application_Start event I would normally use from ...
4
votes
1answer
1k views
IIS7 ISAPI Filter Module & HttpModule Events - How do they line up?
So IIS7 in Integrated Pipeline mode uses a IsapiFilterModule to shim ISAPI filter DLL's and fire off the correct "events" on the filters, which is quite different than previous versions of IIS or IIS7 ...
4
votes
4answers
572 views
How can I perform XSLT transformations in an HttpModule?
I've been trying to implement server-side XSLT transformations as an IIS HttpModule. My basic approach is to install a new filter at BeginRequest that diverts writes into a MemoryStream, and then at ...
4
votes
3answers
2k views
ASP.NET HttpModules & Server.Transfer / Server.TransferRequest / RewritePath problems
I will try to be as specific as I can be. I inherited a very antiquated C++ ISAPI filter that secures a classic ASP website and was tasked with the job of creating an HTTPModule to directly replace ...
4
votes
3answers
2k views
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
{
public void Init(HttpApplication context)
{
...
4
votes
5answers
1k views
Taking /Pages out of the SharePoint URL?
A customer is asking if there is anything we can do to remove "/Pages" from his Internet-facing MOSS publishing site. Some Googling reveals that some clever use of HTTPModules may be able to hide the ...
3
votes
3answers
925 views
Could not load file or assembly 'msshrtmi' or one of its dependencies (Azure Table Storage Access)
I have an HTTPModule that I use to redirect traffic between a website in my data center and a website running on the Azure platform. This HTTPModule retrieves its redirect rules from Azure Table ...
3
votes
1answer
43 views
The stage where Server.Transfer begin executing the new page?
I know that there is a problem (not a problem actually) where in Server.Transfer - the Pipeline events does not apply.
My question is: in what stage (by the drawing) the Server.Transfer begins it's ...
3
votes
2answers
40 views
How can I force an HttpModule to only be used on a specific directory?
I am attempting to use an HttpModule to intercept requests to a specific directory which contains none code files (Images, Music, etc). The Module I have works except it applies to all folders not ...
3
votes
1answer
83 views
How to detect events when user goes from one site collection to another in the same web application?
I have a several site collections in the same web application and I need to handle events when user goes from one site collection to another. I need it for specific actions, like setting "lcid" cookie ...
3
votes
1answer
385 views
Friendly URL vs ugly querystring URL SharePoint, HTTPModule?
I am developing an application in SharePoint 2010.
What now I have to resolve is the following:
I have a list of news. Each one has an ID and Title.
I have one SharePoint page that knows how to ...
3
votes
1answer
395 views
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 by different modules: DynamicCompressionModule ...
3
votes
1answer
482 views
IIS7 HttpModule and ISAPI Filter execution order
I have a site using ISAPI Rewrite as well as a custom HttpModule that both do Url redirects and rewrites.
In IIS 6, everything worked fine: The ISAPI Rewrite filter would run first, followed by the ...
3
votes
1answer
387 views
Is it safe to use an HttpModule for localization?
I'm considering making use of an HttpModule for localization purposes (based on the example in this article) - but I'm curious, is this safe?
Here's the code, for reference:
public class ...
3
votes
2answers
222 views
How can you time requests with ASP.NET MVC?
I'm familiar with using a HttpModule to time requests but those don't really hook into ASP.NET MVC's view system. Can this be done by starting a timer somewhere in global.asax and then accessing it in ...
3
votes
1answer
2k views
HttpModule.Init - safely add HttpApplication.BeginRequest handler in IIS7 integrated mode
My question is similar but not identical to:
http://stackoverflow.com/questions/1123741/why-cant-my-host-softsyshosting-com-support-beginrequest-and-endrequest-event (I've also read the mvolo blog ...
3
votes
1answer
7k views
How do I attach Visual Studio 2010 to IIS 7 to debug a custom HttpModule written for an existing 3rd party web application
First a little background on what I am trying to achieve.
I have a client application that is utilizing REST services served by ArcGIS Server and IIS 7. I want to be able to modify the response ...
3
votes
1answer
951 views
httpModules not working on iis7
I have the following module
public class LowerCaseRequest : IHttpModule {
public void Init(HttpApplication context) {
context.BeginRequest += new EventHandler(this.OnBeginRequest);
...
3
votes
1answer
257 views
AJAX Partial Rendering issues for the default page in IIS 7 when using custom http module
The problem
When I try to make a AJAX partial update request (using the UpdatePanel control) from the default page of an IIS7 web site, it fails- instead of returning the html to be updated, it ...
3
votes
3answers
306 views
Is HttpModule shared among working threads?
Do I have to lock access to instance members?
Example:
public class HttpModule : IHttpModule
{
//...
Dictionary<int, int> foo;
void UseFoo(int a, int b)
{
foo[a] = b;
...