我正在使用版本“5.0.0-rc1”中的“Microsoft.AspNet.WebApi.SelfHost”NuGet 包(也尝试了当前的稳定版),但不幸的是我无法让我的应用程序设置来解析到我的配置路由ApiController 的实现。
该应用程序非常简单,几乎可以在所有示例中找到。它包含一个 .NET 控制台应用程序,其中自托管服务位于主类中。
using System.Web.Http.SelfHost;
using System.Web.Http;
using System;
namespace EP.Server
{
class Program
{
static void Main(string[] args)
{
var config = new HttpSelfHostConfiguration("http://localhost:60064");
config.Routes.MapHttpRoute(
name: "Default Route",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
using (var server = new HttpSelfHostServer(config))
{
server.OpenAsync().Wait();
Console.WriteLine("Server ist running on "+config.BaseAddress + " hit ENTER to stop.");
Console.ReadLine();
server.CloseAsync().Wait();
}
}
}
}
然后有一个单独的控制器类,它存在于同一个项目中并继承自 ApiController 类。
using System.Web.Http;
namespace EP.Server
{
class UsersController : ApiController
{
[HttpGet]
public string Get()
{
return "Hello I'm a user...";
}
}
}
当我从任何浏览器调用服务时,错误消息听起来像这样。
<Error>
<Message>No HTTP resource was found that matches the request URI 'http://localhost:60064/api/Users'.</Message>
<MessageDetail>No type was found that matches the controller named 'Users'.</MessageDetail>
</Error>
有人知道那里出了什么问题吗?不幸的是,我在网上找不到任何类似的问题/问题。
谢谢你!