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 or using one or the other?

link|improve this question

How was it less work to deploy with integrated mode vs classic? Just curious – Peter Lillevold Apr 3 '09 at 23:27
1  
@Peter: extensionless URLs require being mapped manually in classic mode. – Mehrdad Afshari Apr 3 '09 at 23:29
even in the MVC Global.asax the notes read: For instructions on enabling IIS6 or IIS7 classic mode, visit go.microsoft.com/?LinkId=9394801. Or you can just turn on integrated mode and include the System.Web.Mvc assembly and everything just works. – Jon Erickson Apr 4 '09 at 2:07
feedback

1 Answer

up vote 94 down vote accepted

Classic mode (the only mode in IIS6 and below) is a mode where IIS only works with ISAPI extensions and ISAPI filters directly. In fact, in this mode, ASP.NET is just an ISAPI extension (aspnet_isapi.dll) and an ISAPI filter (aspnet_filter.dll). IIS just treats ASP.NET as an external plugin implemented in ISAPI and works with it like a black box (and only when it's needs to give out the request to ASP.NET). In this mode, ASP.NET is not much different from PHP or other technologies for IIS.

Integrated mode, on the other hand, 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.

link|improve this answer
4  
+1 Excellent explanation – NinethSense Jun 12 '09 at 14:37
3  
I'd love to see a benchmark comparison – aron Jan 26 '11 at 2:07
is integrated slower than classic? – AlexanderN Feb 16 at 17:03
@AlexanderN I have not seen a benchmark. – Mehrdad Afshari Feb 17 at 2:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.