我正在使用版本“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();
        }
    }
}
}

然后有一个单独的 Controller 类,该类位于同一项目中,并从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>

有人知道那里出了什么问题吗?不幸的是,我在网络上找不到任何类似的问题。

到目前为止谢谢你!

最佳答案

Web API Controller 需要为公共(public)

10-07 22:29