Error when accessing anything but default route - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T05:35:11Zhttp://stackoverflow.com/feeds/question/814673http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/814673/error-when-accessing-anything-but-default-route0Error when accessing anything but default routeDerek Ekins2009-05-02T11:16:27Z2009-05-05T13:24:27Z
<p>I am having trouble getting routing to work on mono. The default route works fine but nothing else does.</p>
<p>These are the routes I have setup:</p>
<pre><code> routes.MapRoute(
"HelloRoute",
"Hello/{name}",
new { controller = "Home", action = "Hello" }
);
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
</code></pre>
<p>and on my HomeController I have the corresponding action:</p>
<pre><code> public ActionResult Index ()
{
ViewData["Message"] = "Welcome to ASP.NET MVC on Mono!";
return View ();
}
public ActionResult Hello(string name)
{
ViewData["Message"] = "hello "+name;
return View ();
}
</code></pre>
<p>now if I navigate to <a href="http://localhost/" rel="nofollow">http://localhost/</a> I get the message Welcome to...
but if I go to <a href="http://localhost/Hello/World" rel="nofollow">http://localhost/Hello/World</a> I get an error:</p>
<pre><code>value name controller does not match any of the values.
</code></pre>
<p>Description: HTTP 500. Error processing request.</p>
<p>Stack Trace:</p>
<p>System.InvalidOperationException: value name controller does not match any of the values.
at System.Web.Routing.RouteData.GetRequiredString (System.String valueName) [0x00000]
at System.Web.Mvc.MvcHandler.ProcessRequest (System.Web.HttpContextBase httpContext) [0x00000]
at System.Web.Mvc.MvcHandler.ProcessRequest (System.Web.HttpContext httpContext) [0x00000]
at System.Web.Mvc.MvcHandler.System.Web.IHttpHandler.ProcessRequest (System.Web.HttpContext httpContext) [0x00000]
at System.Web.HttpApplication+c__Iterator2.MoveNext () [0x00000]
at System.Web.HttpApplication.Tick () [0x00000] </p>
<p>am I doing something obviously wrong?</p>
<p>Apart from the aditional route, action and view this is a standard asp.net mvc project created in Monodevelop.</p>
http://stackoverflow.com/questions/814673/error-when-accessing-anything-but-default-route/814748#8147480Answer by Darin Dimitrov for Error when accessing anything but default routeDarin Dimitrov2009-05-02T12:05:46Z2009-05-02T12:05:46Z<p>It seems like a bug in the ASP.NET MVC templates for MonoDevelop as suggested in the comments section of this <a href="http://mjhutchinson.com/journal/2009/04/02/aspnet%5Fmvc%5Fmonodevelop%5Faddin%5Fpreview" rel="nofollow">post</a>.</p>
http://stackoverflow.com/questions/814673/error-when-accessing-anything-but-default-route/824843#8248430Answer by Derek Ekins for Error when accessing anything but default routeDerek Ekins2009-05-05T13:24:27Z2009-05-05T13:24:27Z<p>Turns out that this was a bug in the mono routing implementation.</p>
<p>I filled a bug report here: https://bugzilla.novell.com/show_bug.cgi?id=500739.
And it has now been fixed, although I haven't tried it yet.</p>