ASP.NET MVC Action Gives 404 on Certain Params? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T05:49:51Zhttp://stackoverflow.com/feeds/question/949343http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/949343/asp-net-mvc-action-gives-404-on-certain-params2ASP.NET MVC Action Gives 404 on Certain Params?Chris2009-06-04T08:52:09Z2009-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#9503101Answer by AndreasKnudsen for ASP.NET MVC Action Gives 404 on Certain Params?AndreasKnudsen2009-06-04T12:41:04Z2009-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#10213210Answer by Steve Cooper for ASP.NET MVC Action Gives 404 on Certain Params?Steve Cooper2009-06-20T09:41:53Z2009-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>