Difference between IIS 6.0 vs IIS 7.0 - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T14:34:57Zhttp://stackoverflow.com/feeds/question/939733http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/939733/difference-between-iis-6-0-vs-iis-7-03Difference between IIS 6.0 vs IIS 7.0Miral2009-06-02T13:59:31Z2009-06-02T14:19:01Z
<p>We are using Windows 2003 server with IIS 6.0 and thinking of migrating to Window Server 2008 with IIS 7.0 to host our .Net applications</p>
<p>Is anyone aware what are the benefits or drawbacks of it?</p>
http://stackoverflow.com/questions/939733/difference-between-iis-6-0-vs-iis-7-0/939749#9397496Answer by Joel Potter for Difference between IIS 6.0 vs IIS 7.0Joel Potter2009-06-02T14:02:42Z2009-06-02T14:19:01Z<p>One definite benefit is the new "Integrated Mode" on application pools. This allows asp.net to hook into the pipeline earlier than was possible in iis6. Some of our applications use this to do url rewriting for files which was previous impossible with out adding a wildcard extension mapping to the asp.net dll.</p>
<p>Another feature that I've found useful is remote management. I believe remote management may have been available in iis 6, but if so it has been cleaned up and improved for iis 7. The basic idea is that you can allow an authorized remote user to connect to iis and manage almost every feature of iis. </p>
<p>Ssl host headers were also cleaned up in iis 7. You can now add ssl certs to the server rather than to a site. Certs are bound to sites and https host headers through the bindings dialog just like http bindings. This has the added advantage of making it very simple to quickly deploy one cert for multiple sites.</p>
<p><strong>One (hopefully last) Edit:</strong></p>
<p>Microsoft has released a tool for web deployment which offers migration tools for iis6 to iis7. If you decide to move ahead with it I strongly recommend downloading it (<a href="http://www.iis.net/downloads/default.aspx?tabid=34&g=6&i=1603" rel="nofollow" title="here">here</a>) and reading the migration instructions <a href="http://learn.iis.net/page.aspx/427/migrate-from-iis-60-to-iis-70/" rel="nofollow">here</a>.</p>
<p>We went through the same process about a year ago and I have been very happy with the results.</p>
http://stackoverflow.com/questions/939733/difference-between-iis-6-0-vs-iis-7-0/939751#9397512Answer by Andrew Hare for Difference between IIS 6.0 vs IIS 7.0Andrew Hare2009-06-02T14:02:44Z2009-06-02T14:02:44Z<p>Please read <a href="http://www.iisworkstation.com/2008/09/iis-6-and-iis-7-how-different-are-they.html" rel="nofollow">IIS 6 and IIS 7 - How different are they?</a></p>
<blockquote>
<p>This is something that I wanted to
write from a long time now.Yesterday a
friend of mine asked me exactly the
same question and I thought what a
better time than now to write an entry
... To start off lets begin by
understanding the request pipeline
that exists within IIS 6.</p>
</blockquote>
http://stackoverflow.com/questions/939733/difference-between-iis-6-0-vs-iis-7-0/939768#9397680Answer by Absolut40 for Difference between IIS 6.0 vs IIS 7.0Absolut402009-06-02T14:05:24Z2009-06-02T14:05:24Z<p>Just a few things I have found useful:</p>
<ul>
<li>IIS 7 enables you to rewrite your
URLs via Web.Config <rewrite><rules></li>
<li>You can now restart just one website
if you need to rather than restarting
IIS.</li>
<li>Much better UI</li>
<li>Better PHP integration - <a href="http://php.iis.net/" rel="nofollow">http://php.iis.net/</a></li>
</ul>
http://stackoverflow.com/questions/939733/difference-between-iis-6-0-vs-iis-7-0/939772#9397720Answer by Gulzar for Difference between IIS 6.0 vs IIS 7.0Gulzar2009-06-02T14:05:35Z2009-06-02T14:17:46Z<p>The biggest benefit is the Integrated Pipeline. </p>
<p><a href="http://learn.iis.net/page.aspx/244/how-to-take-advantage-of-the-iis7-integrated-pipeline/" rel="nofollow">How to Take Advantage of the IIS 7.0 Integrated Pipeline</a></p>
<blockquote>
<p>IIS 6.0 and previous versions allowed
the development of .NET application
components via the ASP.NET platform.
ASP.NET integrated with IIS via an
ISAPI extension, and exposed its own
application and request processing
model. This effectively exposed two
separate server pipelines, one for
native ISAPI filters and extension
components, and another for managed
application components. ASP.NET
components would execute entirely
inside the ASP.NET ISAPI extension
bubble and only for requests mapped to
ASP.NET in the IIS script map
configuration. </p>
<p>IIS 7.0 integrates the ASP.NET runtime
with the core web server, providing a
unified request processing pipeline
that is exposed to both native and
managed components known as modules.</p>
<p><strong>The many benefits of integration include</strong>: </p>
<p>Allowing services provided by both
native and managed modules to apply to
all requests, regardless of handler.
For example, managed Forms
Authentication can be used for all
content, including ASP pages, CGIs,
and static files. </p>
<p>Empowering ASP.NET
components to provide functionality
that was previously unavailable to
them due to their placement in the
server pipeline. For example, a
managed module providing request
rewriting functionality can rewrite
the request prior to any server
processing, including authentication. </p>
<p>A single place to implement,
configure, monitor and support server
features such as single module and
handler mapping configuration, single
custom errors configuration, single
url authorization configuration.</p>
</blockquote>
http://stackoverflow.com/questions/939733/difference-between-iis-6-0-vs-iis-7-0/939797#9397970Answer by hipplar for Difference between IIS 6.0 vs IIS 7.0hipplar2009-06-02T14:09:12Z2009-06-02T14:09:12Z<p>One big thing we found during our migration was that editing the applicationhost.config file was more successful than using the IIS manager itself. </p>
<p>There were a lot of changes that had to be made for our apps. I would start testing early.</p>