1

我有一个在 POST 和 GET 上调用 WebAPI 异步的 MVC 应用程序。在本地运行 WebAPI 和 MVC 应用程序时,WebAPI 响应显示成功,但 SendAsync 请求返回 500。此外,Fiddler 不显示 API 调用。我怀疑它与异步请求的处理方式有关,但我不确定我错过了什么。

MVC 控制器对 API 的调用:

public Model UploadFile(Model formCollection)
{
    var documentModel = formCollection.ToString();

    var client = new HttpClient();
    var uri = new Uri(BaseUri + "document/");

    var content = new StringContent(documentModel);

    var request = new HttpRequestMessage(HttpMethod.Post, uri) {Content = content};

    request.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");

    var response = client.SendAsync(request);
    response.Wait();

    try
    {
        var returned = response.Result;
        if (returned.StatusCode != HttpStatusCode.OK)
        {
            throw new Exception(returned.RequestMessage.ToString());
        }

        var model = JsonConvert.DeserializeObject<Model>    (returned.Content.ReadAsStringAsync().Result);
        model.FileContents = "";

        return model;
    }
    catch(Exception e)
    {
        var error = new Exception("Service failure - ", e);
        throw error;
    }
}

WebAPI 帖子:

[HttpPost]
public async Task<HttpResponseMessage> Post([FromBody]Model model)
{
    var response = await SubmitNew(model);

    return Request.CreateResponse(response);
}

在 Post 中设置返回断点显示有效响应,但在 MVC 控制器中的 response.Result 上显示 500。我什至尝试返回 OK 请求,无论响应如下:

return Request.CreateResponse(HttpStatusCode.OK, result);

关于为什么客户显示 500 的任何想法?

4

3 回答 3

2

在您的 Global.asax.cs

public class WebApiApplication : System.Web.HttpApplication
{
    protected void Application_Start()
    {
        // Try adding the following lines:
        var configuration = GlobalConfiguration.Configuration;
        var formatters = configuration.Formatters;
        formatters.Clear();
        formatters.Add(new JsonMediaTypeFormatter());
    }

    // A good idea to have this:
    protected void Application_Error()
    {
        Exception unhandledException = Server.GetLastError();
        // Set a breakpoint here or do something to log the exception
    }

添加到的代码Application_Start将确保仅对 JSON 进行序列化。虽然它可能不是您在最终代码中想要的,但作为隔离问题原因的临时措施可能会有所帮助。

添加Application_Error应该有助于捕获 WebAPI 层中发生的问题,例如当它序列化您从控制器方法返回的对象时。

我的怀疑是SubmitNew返回一些无法序列化的东西,例如无限递归引用(例如:具有相互引用的父/子结构)。

于 2016-12-23T16:30:31.613 回答
1

我发现了这个问题,在初始 POST 和 GET 调用结果之后,WebAPI 的日志记录服务中发生了超时错误。问题已解决。

于 2016-12-23T17:57:04.450 回答
0

我对一些我“改进”的代码有类似的问题 - 我看到 HttpResponseMessage 实现了 IDisposable 接口,因此决定包装 Return Request.CreateResponse 方法是一个 using 语句,导致 500 错误。

删除 using 语句为我解决了这个问题。

于 2019-04-21T07:50:09.880 回答