Questions tagged [integrated-pipeline-mode]

Integrated mode is a new mode in IIS7 where IIS pipeline is tightly integrated as ASP.NET request pipeline.

Integrated mode, is a new mode in IIS7 where IIS pipeline is tightly integrated (i.e. is just the same) as ASP.NET request pipeline. ASP.NET can see every request it wants to and manipulate things along the way. ASP.NET is no longer treated as an external plugin. It's completely blended and integrated in IIS. In this mode, ASP.NET HttpModules basically have nearly as much power as an ISAPI filter would have had and ASP.NET HttpHandlers can have nearly equivalent capability as an ISAPI extension could have. In this mode, ASP.NET is basically a part of IIS.


Source: What is the difference between 'classic' and 'integrated' pipeline mode in IIS7?

89 questions
522
votes
4 answers

What is the difference between 'classic' and 'integrated' pipeline mode in IIS7?

I was deploying an ASP.NET MVC application last night, and found out that it is less work to deploy with IIS7 set to integrated mode. My question is what is the difference? And what are the implications of using one or the other?
Jon Erickson
  • 112,242
  • 44
  • 136
  • 174
65
votes
11 answers

"This operation requires IIS integrated pipeline mode."

I have a web application being developed on Windows 8.1, .NET 4.5.1, IIS 8.5 (under Integrated AppPool), Visual Studio 2013 over the default template that includes ASP.NET Identity, Owin, etc. and locally it works fine. Then I uploaded it to a…
wooer
  • 1,677
  • 2
  • 16
  • 27
23
votes
2 answers

Impersonate Domain User with Integrated Pipeline

In an local Intranet environment, are we doomed to use "Classic" pipeline mode in our App Pool if we want to use Impersonate our Windows domain users, or is there a new way to declaratively "run as" them (so-to-speak)? My goal is to use Windows…
22
votes
2 answers

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 integrated pipeline negatively affect thread…
frankadelic
  • 20,543
  • 37
  • 111
  • 164
20
votes
1 answer

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 exception if there is a way to test if our code…
userx
  • 3,769
  • 1
  • 23
  • 33
20
votes
4 answers

IE double postback hangs IIS 7 in Integrated Managed pipeline mode when session is accessed

Here's my environment: IIS7.5 on Win 7, .NET 4, App Pool Integrated web.config Test.aspx <%@ Page Language="C#" %>