Tagged Questions
8
votes
3answers
4k views
IIS7 Integrated vs Classic Pipeline - which uses more ASP.NET threads?
With integrated pipeline, all requests are passed through ASP.NET, including images, CSS.
Whereas, in classic pipeline, only requests for ASPX pages are by default passed through ASP.NET.
Could ...
7
votes
1answer
441 views
Check if in Integrated Pipeline Mode
Is it possible to check if our code is executing in Integrated Pipeline Mode or not?
There are some ASP.NET class properties that only work in Integrated Pipeline Mode, and I want to avoid raising an ...
6
votes
2answers
117 views
Locking and high CPU when switching IIS from Classic to Integrated mode
In IIS 6 we used to do Url Rewriting with two third party components: Helicon (for handling extensionless url's) and UrlRewriting.net.
Some time ago we migrated to IIS 7 - Classic Mode, still using ...
4
votes
2answers
2k views
IIS 7 - Windows Authentication not working
We have several web apps that use Windows Authentication that worked fine on IIS6. After deploying them to IIS7, Windows Authentication no longer works (we get 401.2 errors) UNLESS we set the web app ...
3
votes
2answers
1k views
ASP.NET Authentication with Roles in IIS7 Integrated Mode for Static Content
I am experimenting with the integrated authentication mode for static content in IIS7. I followed the instructions in this article: http://aspnet.4guysfromrolla.com/articles/122408-1.aspx
It is ...
2
votes
1answer
1k views
Custom HttpModule for IIS 7 for integrated
I'm having troubles with a custom Error handler I built. It should be a HttpModule, but when I add it to my web.config's system.webServer/modules tag, it is not initiated.
This is my web.config ...
2
votes
4answers
2k views
IIS7 Integrated Pipeline: Interaction between maxConcurrentRequestsPerCPU and requestsQueueLimit settings
Firstly there's a great overview of the IIS7 HTTP request lifecycle and various settings that affect performance here:
ASP.NET Thread Usage on IIS 7.0 and 6.0
Very specifically though, in dotNet 4 ...
2
votes
1answer
437 views
Ninject + .NET 4 + Integrated Pipeline results in NullReferenceException
I have configured Ninject 2 in an ASP.NET 4.0 project (not MVC) however when I deploy the project to an IIS host it crashes with the following:
System.NullReferenceException: Object reference not set ...
2
votes
1answer
1k views
How to get Custom Error Pages working for Classic ASP with IIS 7 Integrated Pipeline
I'm working on a website with legacy Classic ASP pages (being converted to ASP.NET on an as needed basis) and new ASP.NET pages. Use of IIS 7 Integrated Pipeline has been very helpful with our ...
2
votes
2answers
679 views
IIS7 integrated pipeline mode slower than classic
we are running a complex 64-bit ASP.NET 2.0 application on W2008 R2 Standard and stress tests done with VS2008 Team System have indicated that integrated pipeline mode is 30% slower than classic mode.
...
2
votes
1answer
324 views
How to programatically detect if my application is running in IIS 7.0 Integrated mode from within an ASP.NET page
Generally we should have control of our AppPools and be able to force the Managed Pipeline Mode. In my case I don't have control and would like to implement the code behind code a little differently ...
2
votes
2answers
825 views
Why is IIS7 matching to handlers with the classicmode precondition when the app is running in integrated mode?
I have an application in an application pool that's running in integrated mode. I have added a handler to system.web > httpHandlers and I kept getting a 404 result. So I enabled failed request tracing ...
2
votes
2answers
2k views
Global.asax Application_Error doesn't work with Integrated Mode
Application_Error doesn't work with Integrated Mode but does work with Class Mode.
I would to transfer request to error page using both Integrated Mode and Class Mode. Can this be done or I have to ...
1
vote
1answer
36 views
Pass a request back to IIS inside a ActionResult
I'm pretty sure the answer is "you can't do this", but if so, ASP.NET MVC is horribly flawed.
I have an ActionResult which needs to serve a static file (the filename is determined in code). For ...
1
vote
0answers
324 views
Forms Authentication overrides impersonation in IIS7
I have been searching all over the place for a solution to this. Any help is appreciated.
I have an ASP.NET app which ran fine on IIS6. On IIS 7.5 (Integrated pipeline) I am running into some ...
1
vote
2answers
470 views
sitecore template standard values layout not updating all items, layout not loading
i'm currently having a nightmarish moment with Sitecore. Basically my issues are two-fold:
1) the first time i added a standard value item to a template, and added a layout setup to it, i was ...
1
vote
1answer
565 views
IIS7 Itegrated Pipeline Mode: Context.User is intermittently null for Windows Auth
Our code relies on checking the Context.User.Identity value in the Global.asax Application_AuthenticateRequest(...) method to retrieve some information about the logged in user. This works fine in ...
1
vote
2answers
1k views
Configure IIS7 to server static content through ASP.NET Runtime
I searched high an low and still cannot find a definite answer.
How do I configure IIS 7.0 or a Web Application in IIS so that ASP.NET Runtime will handle all requests -- including ones to static ...
0
votes
2answers
99 views
IIS 7 integrated pipeline - modifying the response HTML
I'm trying to write an IIS extension that modifies the response HTML for a request as it is sent back to the client. I know that traditionally this would be the work of an ISAPI filter however I'm a ...
0
votes
0answers
176 views
RegisterForEventValidation can only be called during Render(); In Integrated pipeline
we have 2 web servers with same OS (Server 2008 R2).
I uploaded same asp.net application to both. in one server everything is fine but in another server when it's in integrated pipeline mode throw ...
0
votes
0answers
119 views
Url rewriting module doesn't work on classic pipline in IIS 7.5
I wrote a custom url rewriting http module that's work perfectly in Integrated managed pipline app pool.
but when I turn it to Classic, it stops working.
protected virtual void ...
0
votes
1answer
222 views
Response.Headers and IIS6
So I'm trying to iterate over Response.Headers for a custom caching job, but I'm getting the following error when I touch the thing:
This operation requires IIS integrated pipeline mode
It this ...
0
votes
1answer
494 views
Site not redirecting to Default Document in Classic pipeline mode
IIS 7.5
Windows 7 64-bit
.NET 4.0
I have a .NET 4.0 site in IIS 7.5. The Default Document is set to home.aspx.
If the application pools managed pipeline mode is set to "Classic"
...