Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been trying to figure out why my views are returning 404 in my staging environment, but not my development environment.

  • Windows Server 2008 R2
  • IIS 7.5
  • MVC 2 Beta definitely installed.

The first Route entry in my Global.asax is as follows:

        routes.MapRoute(
            "FindStore",
            "FindStore",
            new { controller = "FindStore", action = "Index" });

All views are definitely present and in the proper directories.

Basically if I go to http://StagingServer/FindStore I get a 404 error. Every other answer I've seen has to do with IIS 6. which I'm not running.

share|improve this question

4 Answers

I am not sure if this will help but there was an issue reported on Stack Overflow that uses both technologies and involves a similar problem: http://stackoverflow.com/questions/1852251/getting-an-asp-mvc2-vs2010-application-to-work-in-iis-7-5

I would check it out and see if it helps.

share|improve this answer
This tutorial may also help Using ASP.NET MVC with Different Versions of IIS (C#) asp.net/learn/mvc/tutorial-08-cs.aspx – Alos Jan 14 '10 at 16:45
That's not a bad idea. unfortunately both "HTTP Redirection" and "HTTP Errors" are installed. ... although I had JUST installed them for other reasons earlier today, perhaps a reboot is in order? ... I'll have to check. Also I've been going through that microsoft tutorial already, it's actually linked at the top of the Global.asax.cs file put out by an MVC project. – blesh Jan 14 '10 at 16:57

I had the same problem, my App Pool was set to Classic and I had changed it to use the .NET 4.0 Framework, but it didn't start working until I recycled the App Pool.

share|improve this answer

We had a similar problem. We checked integrated mode, permissions, and runAllManagedModulesForAllRequests. No dice. Eventually this windows hotfix fixed it.

share|improve this answer
Thank you! this is what finally fixed this problem for us. What a pain, because pure MVC3 apps were working fine on the same server. It was just the hybrid apps that were having problems. – javram May 18 '12 at 14:32
up vote 0 down vote accepted

It ended up being because my App Pool was running in Classic mode.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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