ASP.NET MVC Action Gives 404 on Certain Params? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T05:49:51Z http://stackoverflow.com/feeds/question/949343 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/949343/asp-net-mvc-action-gives-404-on-certain-params 2 ASP.NET MVC Action Gives 404 on Certain Params? Chris 2009-06-04T08:52:09Z 2009-07-03T03:37:58Z <p>I'm getting a strange error in my MVC site. I have an action in my controller which responds to the default route of {controller}/{action}/{id} - in my case, /Project/Client/{id}.</p> <p>Depending on the id I pass to it, I get an error. With Elmah off, it's a straight-up ASP.NET 404 error. Turning Elmah on gives me the following:</p> <pre><code>System.Web.HttpException at System.Web.CachedPathData.GetConfigPathData(String configPath) at System.Web.CachedPathData.GetVirtualPathData(VirtualPath virtualPath, Boolean permitPathsOutsideApp) at System.Web.HttpContext.GetFilePathData() at System.Web.HttpContext.GetConfigurationPathData() at System.Web.Configuration.RuntimeConfig.GetConfig(HttpContext context) at System.Web.HttpContext.get_ImpersonationToken() at System.Web.ClientImpersonationContext.Start(HttpContext context, Boolean throwOnError) at System.Web.HttpApplication.ThreadContext.SetImpersonationContext() at System.Web.HttpApplication.ThreadContext.Enter(Boolean setImpersonationContext) at System.Web.HttpApplication.OnThreadEnterPrivate(Boolean setImpersonationContext) at System.Web.HttpApplication.ApplicationStepManager.ResumeSteps(Exception error) </code></pre> <p>This only happens with certain ID params. for example</p> <pre><code>/Projects/Client/ABC -- works /Projects/Client/DEF -- works /Projects/Client/GHI -- 404 /Projects/Client/JKL -- works </code></pre> <p>and so on...</p> <p>Any clues?</p> http://stackoverflow.com/questions/949343/asp-net-mvc-action-gives-404-on-certain-params/950310#950310 1 Answer by AndreasKnudsen for ASP.NET MVC Action Gives 404 on Certain Params? AndreasKnudsen 2009-06-04T12:41:04Z 2009-06-04T12:41:04Z <p>You can use Phil Haacks route debugger to learn which routes are being called read here: <a href="http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx" rel="nofollow">http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx</a></p> http://stackoverflow.com/questions/949343/asp-net-mvc-action-gives-404-on-certain-params/1021321#1021321 0 Answer by Steve Cooper for ASP.NET MVC Action Gives 404 on Certain Params? Steve Cooper 2009-06-20T09:41:53Z 2009-06-20T09:41:53Z <p>One thing you should look at is your web.config files in your site. The top of your stack trace;</p> <pre><code>at System.Web.CachedPathData.GetConfigPathData(String configPath) </code></pre> <p>Looks to be a call to determine the location of the web.config. It may be that the virtual file system being defined by your routes (<code>/Project/client/id</code>) is conflicting with a web.config that may exist at, say, <code>~/Project/web.config</code></p> <p>It's a bit of a wild stab derived from the stack trace, but shouldn't take too long to see if it might be a problem. </p>