4

I thought that IIS 7.0 and IIS 7.5 have (from the application developer point of view) nearly same features. Then, I found that certain features are not working on IIS 7.0. Are there more features available in IIS 7.5 that are missing in IIS 7.0 (that application developer should know)?

(Maybe not core IIS features, but some other ASP.NET (MVC) features that are working on IIS 7.0.)

TN.
  • 557
  • 5
  • 10
  • 21
  • Do you have any specific problems about your ASP.NET MVC project running under IIS? – tugberk Sep 17 '11 at 20:36
  • Yes, I have a problem with plain .cshtml files on IIS 7.0 (check the link in the question). And I also want to know what other features (I may use) are not working on IIS 7.0. – TN. Sep 17 '11 at 20:44
  • Are you running your application under a Classic Mode App Pool? – tugberk Sep 17 '11 at 20:47
  • No, 4.0 integrated. – TN. Sep 17 '11 at 20:49
  • Turn on Failed Request Tracing on the IIS and see what you get there. – tugberk Sep 17 '11 at 20:52
  • I was trying to turn of Failed Request Tracing and I have found that I did not have tracing installed. But in the meantime I have found it:) http://stackoverflow.com/questions/7366925/iis-returns-404-for-asp-net-mvc3-file-cshtml/7457933#7457933 – TN. Sep 17 '11 at 21:35

2 Answers2

3

Following article should help you :

http://technet.microsoft.com/en-us/library/dd939979(WS.10).aspx

In order to sum it up :

Many features have been added or enhanced in Internet Information Services (IIS) 7.5. The following changes are available:

Integrated extensions

  • WebDAV and FTP
  • Request Filtering
  • Administration Pack modules

Management enhancements

  • IIS Module for Windows PowerShell
  • Configuration logging and tracing

Application hosting enhancements

  • Service hardening
  • Managed service accounts
  • Hostable Web Core
  • Failed Request Tracing for FastCGI
tugberk
  • 937
  • 4
  • 13
  • 30