gpt4 book ai didi

c# - 调试自托管 WebApi 应用程序

转载 作者:太空狗 更新时间:2023-10-30 01:20:14 25 4
gpt4 key购买 nike

我有一个带有以下 Controller 的 WebApi 应用程序:

public class ContentController : ApiController
{
[HttpPost]
public HttpResponseMessage Post(string contentType)
{
//do stuff
return new HttpResponseMessage(HttpStatusCode.OK);
}
}

路线是这样的

routes.MapHttpRoute("content", 
"api/content/{contentType}",
new { controller = "Content", contentType = RouteParameter.Optional });

当我在 IIS/cassini 中托管服务时,如果我 POST 到 api/content/whatever 然后如预期的那样,我的 Controller 操作被命中。

但是,

我有一个测试项目,SelfHosts 这个 api

using (var client = new HttpClient(Server))
{
var result = client.PostAsync(BaseAddress + "api/content/whatever"

var message = result.Content.ReadAsStringAsync().Result;
}

如果我调试单元测试并进入它,结果是:

{StatusCode: 500, ReasonPhrase: 'Internal Server Error', Version: 1.1, Content: System.Net.Http.ObjectContent`1[[System.Web.Http.HttpError, System.Web.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], Headers: { Content-Type: application/json; charset=utf-8 }}

毫无帮助的是,message 只是

An error has occurred

有没有一种方法可以调试我的自托管 WebApi 以找出导致此错误的原因?

设置

Server 只是一个来自基类的 HttpServer,它包含我的自托管服务器,新的像这样:

var httpConfig = new HttpSelfHostConfiguration(BaseAddress);

new ApiServiceConfiguration(httpConfig).Configure();

var server = new HttpSelfHostServer(httpConfig);
server.OpenAsync().Wait();
Server = server;

最佳答案

如果您启用跟踪并添加 Trace.Listeners.Add(new ConsoleTraceListener()),那么您将获得更详细的错误消息。但是,您的问题很可能与您尝试序列化的对象未能序列化这一事实有关。

关于c# - 调试自托管 WebApi 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19810754/

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