This is NOT a duplicate question, and the problem is driving me crazy. I am getting the typical error “A public action method X was not found on controller Y” which returns a 404 Not Found. The screenshot gives you a good idea:

The image shows the debugger paused right before the line that throws the exception is executed (base.HandleUnknownAction(actionName)). Now, before you jump into conclusions, here’s some info:
- This was working at some point perfectly well.
- The HTTP verb (
GET) should be accepted by theUpdateCartaction (see annotations above method signature). - The parameters sent are irrelevant: the error happens with
POST,GETand any combination of parameters. - Other similar actions in the same controller work well.
- I took the screenshot with
UpdateCartmarkedvirtual, but removingvirtualmakes no difference. - The screenshot shows that
ActionInvoker.InvokeAction(this.ControllerContext, "UpdateCart")returns false. Not sure why the reflection performed over my controller can’t find the method, but it’s RIGHT THERE!!
The routes are the default ones and they work, since otherwise I wouldn’t have been able to stop the debugger to take the screenshot above. Here’s the code from Global.asax.cs:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Tickets", action = "Index", id = UrlParameter.Optional }
);
}
Any ideas are greatly appreciated.
EDIT
Ethan Brown’s answer below is correct: HttpGet and HttpPost are mutually exclusive. The solution was to replace these attributes with [AcceptVerbs(HttpVerbs.Get | HttpVerbs.Post)].
The problem is that you’re specifying both the
HttpGetandHttpPostattributes. If you leave both of them off, the action accepts both POST and GET requests. My guess is that theHttpGetandHttpPostattributes don’t signal to MVC to allow the corresponding request type, but to deny the opposite type. So by including[HttpPost], you’re denying GET requests, and by including[HttpGet], you’re denying POST requests…effectively denying all request types. Leave the attributes off and it will accept both types.Update: I just checked the MVC source, and my assumption is correct. In
ActionMethodSelector, it checks the attributes thusly:In other words, all
ActionMethodSelectorAttribute(from whichHttpPostAttributeandHttpGetAttributederive) must return true for the action to be invoked. One or the other is always going to return false, so the action will never execute.