gpt4 book ai didi

c# - ASP.NET Web API OWIN : No HTTP resource was found that matches the request URI

转载 作者:行者123 更新时间:2023-11-30 20:41:44 24 4
gpt4 key购买 nike

感谢此站点上一些用户的帮助,我的测试应用程序开始运行,现在开始编写我需要的实际应用程序。

我有一个 C# 应用程序,它使用 OWIN 来托管 ASP.NET Web API。我需要该应用程序提供有关其他打开的应用程序的信息。我对它的编程几乎与我开始工作的测试/示例程序完全相同,但更改了一些名称。

当我尝试访问`http://localhost:9000/api/applications 时我收到一条错误消息:

<Error>
<Message>
No HTTP resource was found that matches the request URI 'http://localhost:9000/api/applications'.
</Message>
<MessageDetail>
No type was found that matches the controller named 'applications'.
</MessageDetail>
</Error>

`服务器类是主类:

namespace Server
{
public class Server
{
public const string baseAddress = "http://localhost:9000/";
static void Main(string[] args)
{
ApplicationManager.getManager().AddApplication(new Application(1, "Chrome", 0.5f));
ApplicationManager.getManager().AddApplication(new Application(2, "Windows Media Player", 1.0f));
ApplicationManager.getManager().AddApplication(new Application(3, "Minecraft", 1.0f));

using (WebApp.Start<Startup>(url: baseAddress))
{
Console.ReadKey();
}

}
}
}

这是我的 Web API 配置类:

namespace Server
{
public class Startup
{
public void Configuration(IAppBuilder appBuilder)
{
HttpConfiguration config = new HttpConfiguration();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);

appBuilder.UseWebApi(config);
}
}
}

这是我的 Controller :

namespace Server.Api.Controllers {
public class ApplicationController : ApiController
{
public IEnumerable<Application> Get()
{
return ApplicationManager.getManager().GetApplications();
}

public IHttpActionResult Get(int id)
{
Application app = ApplicationManager.getManager().GetApplication(id);
if (app == null)
{
return NotFound();
}

return Ok(app);
}
} }

Application 对象只包含一些属性和构造函数。 ApplicationManager 类只是将应用程序添加到应用程序列表中,供 Controller 使用。

最佳答案

http://localhost:9000/api/applications 替换为 http://localhost:9000/api/application。最后一个字母 s 导致了这个问题。希望这对您有所帮助!

关于c# - ASP.NET Web API OWIN : No HTTP resource was found that matches the request URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32108986/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com