Tagged Questions
The integrated-pipeline-mode tag has no wiki summary.
7
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 ...
6
votes
1answer
405 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 ...
4
votes
1answer
1k views
IIS7 ISAPI Filter Module & HttpModule Events - How do they line up?
So IIS7 in Integrated Pipeline mode uses a IsapiFilterModule to shim ISAPI filter DLL's and fire off the correct "events" on the filters, which is quite different than previous versions of IIS or IIS7 ...
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
1answer
2k views
HttpModule.Init - safely add HttpApplication.BeginRequest handler in IIS7 integrated mode
My question is similar but not identical to:
http://stackoverflow.com/questions/1123741/why-cant-my-host-softsyshosting-com-support-beginrequest-and-endrequest-event (I've also read the mvolo blog ...
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
2answers
125 views
Avoiding Integrated pipeline authentication for 404 requests for static files
I have a site,which is running in Integrated mode on IIS7 and have changed the web.config so the static files are authenticated. What I would like to fix is,when a request for a not existing file ...
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
426 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
632 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
306 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
779 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 ...
1
vote
1answer
26 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
1answer
86 views
Form data lost during the authentication process— but only in integrated pipeline mode
I maintain an ASP.NET MVC application (version 1) that currently runs on IIS 7 in classic mode. We'd like to start running the app in integrated pipeline mode instead. However, I am running into a ...
1
vote
1answer
174 views
Problem with Commerce Server 2007 sp2 and ASP.NET Integrated Pipeline
I am using Microsoft Commerce Server 2007 sp2 and a custom ASP.NET 2.0 website. Everything works well in Classic Pipeline, but when I try to use the Integrated pipeline, it fails with the following ...
1
vote
0answers
318 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
1answer
330 views
PHP/IIS Integrated Pipeline Anonymous Visitor HTTP Posts Timeout
I have configured PHP to run under FastCgi on IIS7 on Windows Server 2008 under Forms Authentication/IIS Integrated Pipeline. PHP and even Drupal is working brilliantly for authenticated users. For ...
1
vote
2answers
446 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
534 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 ...
1
vote
1answer
616 views
IIS7 Integrated Pipeline - Response.End not ending the request
I have the following bit of code that worked as expected before we upgraded to Integrated Pipeline in IIS7.
public void RedirectPermanently(string url, bool clearCookies)
{
Response.ClearContent();
...
1
vote
1answer
544 views
Problem using custom HttpHandler to process requests for both .aspx and non-extension pages in IIS7
I am trying to process both ".aspx" and non-extension page requests (i.e. both contact.aspx and /contact/) using a custom HttpHandler in IIS7. My handler works just fine in either one case or the ...
0
votes
0answers
51 views
Windows & Forms Authentication in Integrated Pipeline mode
I had a site hosted in IIS 7.5 with the Classic pipeline. I had set the authentication for that site so that Windows and Forms authentication were enabled, but anonymous was not. This caused the user ...
0
votes
2answers
78 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
99 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
114 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
41 views
How do I configure my MVC app to run in iis integrated mode?
How do I configure my MVC app so that the Visual Studio development server runs it in integrated pipeline mode?
0
votes
1answer
189 views
Windows Server 2008 R2 IIS 7.5 not serving .ashx file properly
I am moving my web apps into a new windows 2008 R2 server with IIS 7.5
There is a third party app which i normally access to it via url http://localhost/start.ashx
But in this new server when i browse ...
0
votes
1answer
208 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
194 views
Diffrentiate static file and asp.net pages in httpmodule - IIS7
In IIS7 integrated mode, especially in ASP.NET MVC and .NET4, all modules run for all request. runAllManagedModulesForAllRequests="true". making runAllManagedModulesForAllRequests="false" give me ...
0
votes
0answers
318 views
Classic ASP on IIS7 ==> application pool managed pipeline mode “integrated” or “classic”?
On IIS7, does the managed pipeline mode setting for an application pool influence memory consumption behavior of classic ASP web applications?
0
votes
1answer
430 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"
...
0
votes
2answers
647 views
How to get Umbraco to handle requests for non .aspx files (IIS integrated pipeline mode)?
I'm trying to get the 301 URL Tracker package for Umbraco to work to my likings.
My goal is to be able to map the old URLs (from another CMS) to the new Umbraco URLs. In my specific situation, the ...
0
votes
2answers
341 views
Why do I need 'Classic Mode' in ASP.NET MVC in IIS7?
Why do I need 'Classic Mode' in ASP.NET MVC in IIS7?
Integrated Mode provides more features and better performance, so why do I need Classic Mode?
Perhaps I dont understand the differences, please ...
0
votes
1answer
409 views
HttpContext.Current.CurrentHandler is null in Context_PreRequestHandlerExecute (IIS integrated mode)
Helo community,
I migrate my application to the IIS integrated mode. (IIS 7.5)
I'm using the IIS wildcard mapping, so every request is processing through my application.
In the classic mode I get ...
0
votes
1answer
2k views
Handlers returns 404 error on IIS7.5 integrated pipeline
<httpHandlers>
<add path="ajaxpro/*.ashx" verb="POST,GET" type="AjaxPro.AjaxHandlerFactory, AjaxPro.2" />
<add path="Reserved.ReportViewerWebControl.axd" verb="*" ...
0
votes
1answer
424 views
ASP.NET MVC Exception?
since today i get an Exception on IIS7.5 with ASP.NET MVC, but i dont know why.
It occurs while using System.Net.WebClient.DownloadString()
[WebException: The remote server returned an error: (500) ...
0
votes
1answer
326 views
Converting website from running on IIS 6.0 to iis 7.0 using native integrated pipeline mode on Server 2008 64 bit
Summary
To get my site running smoothly on a 64bit server platform, using IIS 7.0 Integrated pipeline mode, what are the things I would need to fix in order for this to work.
Some more detail
I am ...
0
votes
1answer
1k views
Exception Handling in IIS7 Integrated Pipeline Mode
I have an application hosted on IIS7 running in Integrated mode. I'm handling errors by putting the following into Web.config:
<httpErrors errorMode="DetailedLocalOnly" existingResponse="Replace"
...
0
votes
2answers
975 views
SubText and IIS 7's Integrated Pipeline Mode
Out of the box, SubText is unable to run under IIS7's Integrated Pipeline Mode. Unfortunately, it goes beyond "migrating" the web.config to match the required format. For example, moving httpModules ...