我需要开发一个应该响应URL的Web应用程序,例如" api / ping.v1" (URL是在外部指定的,没有更改它们的选项)并且我遇到了问题,因为HttpControllerSelector没有找到我的控制器类。我总是得到结果' Not found'。 我不知道如何配置路由,以便可以正确找到我的控制器类。这是一些代码,到目前为止我所做的:
控制器类:
namespace WebApplication1.Controllers
{
public class PingController : ApiController
{
[HttpPost, Route("api/ping.v1")]
public PingResponse HandleRequest(PingRequest request)
{
// TODO: Handle request and create Response object.
return new PingResponse();
}
}
}
WebApiConfig.cs:
namespace WebApplication1
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web-API-Konfiguration und -Dienste
// Web-API-Routen
config.MapHttpAttributeRoutes();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
}
PingRequest.cs:
namespace WebApplication1.Models
{
public class PingRequest
{
[StringLength(20)]
public string UserDms { get; set; }
[Required, StringLength(7)]
public string Ipn { get; set; }
[Required, StringLength(8)]
public string DealerId { get; set; }
[Required, StringLength(20)]
public string WorkshopPartshopId { get; set; }
}
}
班级PingResponse完全是空的,所以我不会在这里发布这个课程。
我的用于测试网络应用程序的HTML页面:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Ping Test</title>
</head>
<body>
<div>
<h2>Ping</h2>
<input type="button" value="Ping" onclick="ping();" />
<p id="pingResult"/>
</div>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3.min.js"></script>
<script>
function ping() {
$.post('api/ping.v1', {userDms: "wb", ipn: "Ipn", dealerId: "dealer", workshopPartshopId: "wshop"})
.done(function (data) {
$('#pingResult').text(JSON.stringify(data.response)).css("color", "black");
})
.fail(function (jqXHR, textStatus, err) {
$('#pingResult').text('Error: ' + err);
});
}
</script>
</body>
</html>
&#13;
当我从Visual Studio启动我的Web应用程序时,我可以使用按钮&#34; Ping&#34;在浏览器中看到我的测试站点。点击按钮ping后,我将收到消息&#34;错误:未找到&#34;。
我希望有人可以指出我正确的方向我的路由配置错误。
最诚挚的问候 迈克尔
答案 0 :(得分:0)
您的问题是由Url中的那个点引起的。 IIS认为Url指向静态文件,甚至不执行路由逻辑。如果您无法避免此类Url,则可以通过将runAllManagedModulesForAllRequests
属性添加到modules
的{{1}}部分来更改此行为:
web.config
查看此question了解详情。