Tagged Questions

6
votes
9answers
854 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 …
2
votes
2answers
180 views

Static files and authentication in ASP.net

Hi! Say I have a virtual folder /topFolder/ in IIS7, and in that folder there can be any file that can be displayed in a browser (xml, html, swf, doc etc - typically "unmanaged" r …
2
votes
3answers
906 views

Using IHttpModule Over Global.asax

I've been given the thrilling task of re-writing our exception handling system. Whilst I will state that handling exceptions from an application-wide point of view isn't something …
1
vote
1answer
93 views

StatusCode in IHttpModule is always 200?

I have an custom IHttpModule that handels all available events and logs the HttpContext.Current.Response.StatusCode to a file. My web.config does not contain any other module in …
1
vote
3answers
328 views

How2: what event to hook in HttpModule for putting js links into head element

I want to have HttpModule to inject javascripts, css links into HEAD element from some simple config data. I am not sure which event I should hook? Curently I use - context.PreReq …
0
votes
1answer
19 views

ASP.NET Webforms IHttpModule Singleton

I have a class that implements IHttpModule in a separate assembly from a website. The module implementation intercepts requests and rewrites urls for the website. The mappings …
0
votes
3answers
183 views

My UrlRewrite IHttpModule remove my second QueryString

Hello, I have a custom url rewriter function that works fine. But when i are going to use a second querystring on my url, that remove the second querystring. my friendly url: /ga …
0
votes
2answers
161 views

Disabling HttpModule on certain location

I know that this has already been asked here but the answer (using a handler instead) doesn't solve the issue, as I'm using a third party component that doesn't implement IHttpHand …
0
votes
1answer
183 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 us …
0
votes
1answer
170 views

Error handling implemented by IHttpModule doesn’t work in IIS6, works in IIS5.1

Hi, I implement common error handling by using IHttpModule. Locally on my machine with WinXP it works like a charm. Once I upload solution on our test server, which is W2003 it d …