The iis-modules tag has no wiki summary.
3
votes
1answer
117 views
How to debug an IIS 7 module?
We had an IIS 7 module that was failing in a rather odd way (to us, at least) - the 32 bit version of the module apparently had some strange behavior where it would look for the 64 bit version of the ...
0
votes
1answer
44 views
How to set up IIS request mirroring to staging environment?
I would like to have all HTTP requests made to my production environment be also automatically made against my testing environment. E.g. if anything makes a request to ...
0
votes
1answer
105 views
Adding a “fake” root folder using rewrite
I'm not sure where to go on this one. I've got rewrites to remove file extensions and such but what I can't seem to find out how to do is to add a "fake" root directory to the site. For example if the ...
0
votes
1answer
295 views
Application calls Begin_Request for images, css and js ASP.NET MVC 3
I have this MVC application where I declare the following routings:
routes.RouteExistingFiles = false;
routes.IgnoreRoute("Content/{*pathInfo}");
routes.IgnoreRoute("Scripts/{*pathInfo}");
...
2
votes
1answer
97 views
How can I grab the response text of web page via IIS Module?
I'm working on an IIS module that, when a web page request is made, it looks over the data being passed back to the browser and replaces certain keywords with approved keywords. I realize there are ...
0
votes
1answer
749 views
how do you Change IIS authentication method to BasicAuthentication?
I try to Change IIS authentication method to BasicAuthentication for IIS7?
I try to follow the steps here, because I get that error
Thank you
PS: I was trying this, but I have only this options
0
votes
1answer
64 views
IIS7 Module Only Works First Time?
I create an IIS Module that appends text to the page before it loads. When I go to the URL, this works perfect the first time the page loads. On subsequent loads, however, the text is never ...
1
vote
1answer
287 views
How the IIS7 handle a auth module? Memory scope?
As those who have worked on such a project you probably know this site:
Developing a Module Using .NET
In this article Mike Volodarsky created a very good post on how to create your own security ...
