I'm running Windows 7 Ultimate (64 bit) using Visual Studio 2010 RC. I recently decided to have VS run/debug my apps on IIS rather than the dev server that comes with it.

However, every time I try to run an MVC app, I get the following error:

HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this directory. Detailed

Error Information

Module DirectoryListingModule

Notification ExecuteRequestHandler

Handler StaticFile Error

Code 0x00000000 Requested

URL http://localhost:80/mySite/

Physical Path C:\myProject\mySite\

Logon Method Anonymous Logon

User Anonymous

I placed a default.aspx file in the directory and I received the following error:

HTTP Error 500.21 - Internal Server Error Handler "PageHandlerFactory-Integrated" has a bad module "ManagedPipelineHandler" in its module list

Are there any other steps I forgot to take to get this working?

Notes: I installed IIS 7.5 after installing VS 2010 RC. I used the built-in "Create Virtual Directory" button under the "Web" tab in the MVC project's "Properties" in Visual Studio 2010. I made sure that the application is using the ASP.NET 4 App Pool.

Below are the installed features of IIS I have.

alt text

link|improve this question

Okay, I have a similar problem and it shows up only with ASP.NET MVC 3 websites. ASP.NET MVC 2 websites work fine. I placed a Default.aspx file in the root of the website and it got picked up okay, no problem. I have bin-deployed the ASP.NET MVC 3 website using VS2010 SP1 and still no-joy. I am at my wits end with this. – Umar Farooq Khawaja Jun 11 '11 at 23:43
Did you make sure that the app pool for the MVC 3 app is set to .NET 4.0? – Omar Jun 11 '11 at 23:50
Yeah. It's set to 4.0/Integrated. I have also ran aspnet_regiis -ir. – Umar Farooq Khawaja Jun 12 '11 at 8:51
3  
I am having this same issue. I have set the application to use 4.0 integrated, ran the registration command to register .NET with IIS (7.5) and still get this error. – Collin White Jun 14 '11 at 3:18
1  
I was finally able to find the problem in my set up, which was that I had renamed the file _Layout.cshtml to _PageLayout.cshtml and had made the corresponding change in _ViewStart.cshtml as well, but apparently that was not enough. Once I reverted the name to _Layout.cshtml, it started working. What was confusing was that _PageLayout.cshtml was picked up correctly on Win7 32 bit but was not picked up on Win7 64 bit or WinSvr2K8 R2. – Umar Farooq Khawaja Jun 15 '11 at 9:19
show 1 more comment
feedback

11 Answers

up vote 165 down vote accepted

ASP.NET 4 was not registered in IIS. Had to run the following command in the command line/run

32bit (x86) Windows

%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -ir

64bit (x64) Windows

%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -ir

Note from David Murdoch's comment:

That the .net version has changed since this Answer was posted. Check which version of the framework is in the %windir%\Microsoft.NET\Framework64 directory and change the command accordingly before running (it is currently v4.0.30319)

link|improve this answer
2  
Thx!!! I've been beating my head over this, and finally realized my issue :) – Richard B Mar 10 '10 at 19:58
4  
Note the "64" in Framework64 for 64-bit Windows! that bit me in the *ss. I must've installed the 32 bit verion 4 or 5 times with no effect. – blesh Jan 4 '11 at 15:31
How do I use this command on hosting? I can't run applications on the hosting! – Alex Maslakov Apr 18 '11 at 20:18
If you're on a shared host, you need to contact your provider to enable .NET 4 for you. – Omar Apr 18 '11 at 20:53
5  
That the .net version has changed since this Answer was posted. Check which version of the framework is in the %windir%\Microsoft.NET\Framework64 directory and change the command accordingly before running (it is currently v4.0.30319). – David Murdoch Apr 21 '11 at 20:22
show 2 more comments
feedback

One more thing to make sure you have is the following set in your web.config:

<system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/> 
</system.webServer>
link|improve this answer
4  
That did it for me. Thanks – boca Sep 9 '11 at 19:54
1  
Also solved it for me. Strange it works locally in VS2010 IIS Express without that setting. – Phil Nov 10 '11 at 11:11
This solved it for me. – Joshua Evensen Feb 10 at 14:18
Solved it for me thanks! – Justin Mar 9 at 16:10
If you don't want to set runAllManagedModulesForAllRequests (which runs even for static files) you can install a Microsoft hotfix: microsoft.com/download/en/…. – Ek0nomik Apr 17 at 16:17
feedback

Baddie's answer saved me a lot of hassle. Thanks! For those with more recent versions of .Net4 the command needs to be slightly altered:

%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -ir

Tis is for 64-bit servers.

link|improve this answer
feedback

Another reason why someone might get this error is if the file Global.asax is not in the root folder anymore.

link|improve this answer
Yep - the installer I wrote didn't bring this file across. Thanks! – zadam Sep 23 '11 at 3:56
feedback

I was also receiving this error and discovered that "HTTP Redirection" was not turned on in Windows Server. This blog post points this out as well: http://blogs.msdn.com/b/rjacobs/archive/2010/06/30/system-web-routing-routetable-not-working-with-iis.aspx

link|improve this answer
Of all the damn things it could have been, this is it. I looked everywhere, and played with security settings for a few hours, aspnet_regiis, and on and on. Sweet baby jesus on a crumbly kaiser roll. – Andrew Backer May 7 at 16:55
feedback

Also u can switch AppPool to Integrated mode. Thnx to Michael Bianchi (http://stackoverflow.com/a/7956546/1143515), I only want to underline that.

link|improve this answer
feedback

I had used the WebDeploy IIS Extension to import my websites from IIS6 to IIS7.5, so all of the IIS settings were exactly as they had been in the production environment. After trying all the solutions provided here, none of which worked for me, I simply had to change the App Pool setting for the website from Classic to Integrated.

link|improve this answer
feedback

Sweet Jesus. I tried all of the above things (but found my settings identical). YET ANOTHER SOLUTION if you are having issues:

http://support.microsoft.com/kb/980368

Try installing this KB for your system. If you are seeing 404s it might be because you don't have this update -- and the isapi module just isn't getting found and there's not a lot you can do about that without this!

link|improve this answer
feedback

To solve this problem without having to resort to 32 bit mode you will have to update the source code for this project

public static void RegisterUrlRoutesFromAttributes(RouteCollection routes)
{
    // Enumerate assembly for UrlRoute attributes.
    List<MapRouteParams> routeParams = new List<MapRouteParams>();
    AppDomain.CurrentDomain.GetAssemblies()
        .ToList()
        .ForEach(assembly => routeParams.AddRange(GetRouteParamsFromAttributes(assembly)));

I have raised this issue as a discussion on the discussion board at the IT cloud codeplex project.

http://itcloud.codeplex.com/discussions/262000

link|improve this answer
feedback

Adding another solution for this issue.

in my Global.asax.cs file I had disabled attempted php files from being consumed by the MVC pipeline using the following:

routes.IgnoreRoute( "{*php}" );

I had done these previously in a MVC2 project and it worked fine, but doing this in my MVC 3 app caused the issue reported above.

link|improve this answer
feedback

Another possible solution, if you move around your global.asax, make sure the markup points to the correct MvcApplication class. Hopefully this will save someone in future.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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