I have created a Web.API, MVC application but ran into some trouble when trying to test it. I get this error:
"{"Message":"No HTTP resource was found that matches the request URI 'http://localhost:60104/api/order/SayWhat/33'.","MessageDetail":"No type was found that matches the controller named 'order'."}"
OrderController
[System.Web.Http.HttpGet]
public string SayWhat(string quoteName)
{
return "Hello World " + quoteName;
}
WebApiConfig
config.Routes.MapHttpRoute(
name: "DefaultPostApi",
routeTemplate: "api/{controller}/{action}/{quote}"
);
config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
try to add the attribute "ActionName" to the function.