HttpClient.PostAsJsonAsync内容为空

时间:2015-07-21 09:36:33

标签: json asp.net-mvc dotnet-httpclient

我正在尝试使用ASP.net MVC将复杂数据类型从一个进程发送到另一个进程。由于某种原因,接收端始终接收空白(零/默认)数据。

我的派遣方:

static void SendResult(ReportResultModel result)
{
    //result contains valid data at this point

    string portalRootPath = ConfigurationManager.AppSettings["webHost"];
    HttpClient client = new HttpClient();
    client.BaseAddress = new Uri(portalRootPath);
    client.DefaultRequestHeaders.Accept.Clear();
    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

    HttpResponseMessage resp = client.PostAsJsonAsync("Reports/MetricEngineReport/MetricResultUpdate", result).Result;
    if (!resp.IsSuccessStatusCode) {
    //I've confirmed this isn't happening by putting a breakpoint in here.
    }
}

我的接收方,在另一个班级,在我的本地计算机上以不同的进程运行:

public class MetricEngineReportController : Controller
{
    ...
    [HttpPost]
    public void MetricResultUpdate(ReportResultModel result)
    {
        //this does get called, but
        //all the guids in result are zero here :(
    }
    ...
}

我的模型有点复杂:

[Serializable]
public class ReportResultModel
{
    public ReportID reportID {get;set;}
    public List<MetricResultModel> Results { get; set; }
}

[Serializable]
public class MetricResultModel
{
    public Guid MetricGuid { get; set; }
    public int Value { get; set; }

    public MetricResultModel(MetricResultModel other)
    {
        MetricGuid = other.MetricGuid;
        Value = other.Value;
    }

    public MetricResultModel(Guid MetricGuid, int Value)
    {
        this.MetricGuid = MetricGuid;
        this.Value = Value;
    }

}

[Serializable]
public struct ReportID
{
    public Guid _topologyGuid;
    public Guid _matchGuid;
}

知道为什么数据没有到达? 任何帮助将不胜感激......

P.S。出于某种原因,我似乎无法捕捉到fiddler上的http POST消息,不知道为什么会这样。

3 个答案:

答案 0 :(得分:1)

尝试在Controller的Action中使用“[FromBody]”参数。当你发布数据传递给body而不是url。

[HttpPost]
public void MetricResultUpdate([FromBody] ReportResultModel result)
{
    //this does get called, but
    //all the guids in result are zero here :(
}

答案 1 :(得分:1)

问题是双重的:

  1. 我需要在我的JSON帖子中指定类型:

    HttpResponseMessage resp = client.PostAsJsonAsync<MetricResultModel>("Reports/MetricEngineReport/MetricResultUpdate", result.Results[0]).Result;
    
  2. 我的模型的组件没有默认构造函数,这对于接收端的JSON反序列化是必需的。

答案 2 :(得分:0)

我刚刚遇到了同样的问题。似乎在使用默认的 content-length 扩展方法时 PostAsJsonAsync 标头设置为 0,这会导致服务器忽略请求正文。

我的解决方案是安装使用新的 System.Net.Http.Json 序列化程序的 System.Text.Json nuget 包。

当您添加 using System.Net.Http.Json; 时,您应该能够正确使用新的扩展方法 PostAsJsonAsync(设置 content-length 标头)。

namespace System.Net.Http.Json
{
    public static class HttpClientJsonExtensions
    {
        public static Task<HttpResponseMessage> PostAsJsonAsync<TValue>(this HttpClient client, string? requestUri, TValue value, CancellationToken cancellationToken)
        {
            return client.PostAsJsonAsync(requestUri, value, null, cancellationToken);
        }

    }
}