Questions tagged [iis-modules]
29 questions
0
votes
1 answer
IIS 10 per minute log rollover
Now that the IIS Advanced Logging is dead I am stuck with IIS 10. Is there a way to get the Enhanced Logging to rollover its log every minute? We've used this to determine performance on our servers in near real-time. Now the best rollover option is…

Agile Noob
- 2,305
- 4
- 24
- 35
0
votes
1 answer
Disable Basic-Authentication without IIS manager
My ASP.NET MVC web application handles the authentication itself by explicitly sending the 401 status code and the www-authenticate header to make the browser display the basic authentication dialog.
My hosting provider doesn't provide access to the…

mrsubwoof
- 183
- 1
- 11
0
votes
1 answer
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 appended.
Any thoughts on how to remedy this?
== CODE…

Dexter
- 1,128
- 3
- 25
- 51
0
votes
0 answers
Equivalent method to IHttpRequest::NegotiateClientCertificate in an ASP.NET module
What method can be called by an IIS ASP.NET module that is equivalent to the IHttpRequest::NegotiateClientCertificate method in the IIS Native-Code Extensibility Web Server Core API?
In other words, in an IIS native module, the method…

rossmpersonal
- 49
- 1
- 5
0
votes
2 answers
IIS redirect maps not working for root destination
I am having some trouble getting rewrite pas to work correctly when I point the destination to root.
If I point at a /page/ destination t seems to work correctly, but if I point at / it does not. Below is what I have in my web.config
…

Universal4
- 1
- 1
0
votes
0 answers
How to enable IIS native modules for third party application
Background-
We have installed a 3rd party application over the web server. This application would run seamlessly only when we enable specific modules list in 'Configure Native Modules' action over the IIS. The installation is done silently and it…

vibhor
- 13
- 2
0
votes
2 answers
IIS7 Installing/Configuring Native Module
I am learning to develop about creating a module for IIS to be use by web application. When I add my .dll to the /bin folder of web application that is hosted in IIS, it works.
But if I add this .dll to the root local server > Modules > Configure…

jomsk1e
- 3,585
- 7
- 34
- 59
0
votes
1 answer
Do native IIS modules restart IIS or application pools?
I've been reading for a long time on various places about modules and how they work with IIS 7+. On a test server we installed Advanced Logging and got it configured the way we would like. A question came up though that I can't answer and that is…

Robert Snyder
- 2,399
- 4
- 33
- 65
0
votes
1 answer
How to manage settings in a custom IIS managed module
I'm currently developing a IIS 7 managed module, that will be distributed along with a server-side software.
How can I manage settings/configurations within the IIS module itself? For example, how can I let the user set an API-key that will be…

Carmine Giangregorio
- 943
- 2
- 14
- 35
0
votes
1 answer
IIS module: Init() is called only once in a website?
I need to add an IIS module for some processing. Here is my module:
namespace MyNamespace
{
public class MyModule : IHttpModule
{
#region IHttpModule Members
public void Dispose()
{
}
public void…

curious1
- 14,155
- 37
- 130
- 231
0
votes
1 answer
IIS redirection to external web site
Is it possible to create local web site in local IIS with some domain, for example. dummy-website
and when locally enter that domain to be redirected to some other web site in internet, note that after redirection url need to stay dummy-website,…

Marko Radosevic
- 150
- 2
- 12
0
votes
1 answer
Could not load type 'ProtocolSupportModule'
I've found a boss-level error that forced me to become an active member of stackoverflow.
I am hosting an MVC app and on root level it works, however css and images are failing. Even when going to the image directly via URL I get the following…
0
votes
1 answer
iis asp.net windows authentication in a custom module
I need to write an iis asp.net module that requires win authentication in very specific circumstances that can't be configured using iis configuration alone.
Essentially,
If complex conditions are true...
Then
Force windows authentication…

T.Rojan
- 111
- 7
0
votes
1 answer
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 site is www.foo.com/index.htm I'd like to…

Hirthas
- 359
- 2
- 13