Tagged Questions
25
votes
10answers
9k views
Logging raw HTTP request/response in ASP.NET MVC & IIS7
I'm writing a web service (using ASP.NET MVC) and for support purposes we'd like to be able to log the requests and response in as close as possible to the raw, on-the-wire format (i.e including HTTP ...
5
votes
4answers
214 views
Requests for static files are hitting the managed code in ASP.NET MVC3
Creating custom IHttpModules, I have realized that the requests for static files (e.g.: .css and .js files) are hitting the managed modules. Probably pictures have the same problem. Shouldn't IIS ...
4
votes
3answers
320 views
What is better: caching through HttpContext.Current.Cache or just a static?
Last night I wrote up my first IHttpModule to do some request processing. I'm using a regular expression to inspect the raw url. The IHttpModule will be called on every request, so it seems reasonable ...
1
vote
1answer
138 views
IHttpModule not being applied to virtual directory
I have a network folder that is mapped to my iis app as a virtual directory and I'm trying to do some authentication for files that are located there with an ihttpmodule. I've verified that the ...
0
votes
1answer
162 views
ASP.NET MVC + IHttpModule = Not Found
Ah to solving this problem, my mind is completely busy. When i register my httpmodule, I get not-found error, otherwise everything works like a charm.
Here is my httpmodule
public class ...
0
votes
1answer
298 views
Getting reference to server controls when handler is MvcHandler
I am working working on an httpmodule to hide certain content on my website if certain criteria are not met. My handler setup is pretty simple. Here are the relevant parts to my question:
Public ...
0
votes
1answer
366 views
Does BeginRequest fire everytime? Which HttpApplication events fire when? Is it different for Ajax?
I am a little confused about the HttpApplication events.
I have a SessionService* that is initialized from an HttpModule. The HttpModule subscribes to HttpApplication.BeginRequest.
In the module ...
0
votes
1answer
503 views
How to get data from an IHttpModule to the ASP.NET MVC RequestContext?
I've got a custom IHttpModule that does authentication (to Facebook, Myspace, etc). It raises an event that can be handled in the HttpApplication instance with details about the user. It's a lot like ...