Tagged Questions

3
votes
2answers
254 views

Accessing the Form collection in an IHttpModule causes event Handler not to get called on Default page

Ok, this is a weird one. I've created a simple sample site to demonstrate the issue. In it, I have a Default.aspx Page that has a button on it: <asp:Content ID="BodyContent" runat="server" ...
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; ...
2
votes
1answer
203 views

Detect mapped virtual directories from an ihttpmodule in a c# .net application

I have a .net website which contains an IHttpModule I wrote to do certain tasks (authorisation etc). But within the website there are a number of virtual directories that are mapped to third party ...
1
vote
1answer
241 views

NTLM Authentication. Can't get it to work in an IHttpModule. AcceptSecurityContext always fails

Here's the setup. On an ASP.Net site, we want to have NTLM authentication on specific pages. The way this will work is there will be a module that will only respond to those pages, and then do the ...
1
vote
2answers
305 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 <httpModules> ...
0
votes
1answer
165 views

How can I get the server address in an IIS 7 module OnAuthenticateRequest hook?

Can an IIS 7 module retrieve the server in an OnAuthenticateRequest hook or an OnPostAuthenticateRequest hook? By "server" I mean the server that the IIS authenticated against (even if it's ...