.NET HttpClient在多次请求后挂起(除非Fiddler处于活动状态)

时间:2012-12-30 22:55:10

标签: httpwebrequest dotnet-httpclient

我正在使用System.Net.Http.HttpClient将一系列请求从控制台应用程序发布到REST API,并将JSON响应反序列化为强类型对象。我的实现是这样的:

using (var client = new HttpClient())
{
    var content = new StringContent(data, Encoding.UTF8, "text/html");
    var response = client.PostAsync(url, content).Result;

    response.EnsureSuccessStatusCode();

    return response.Content.ReadAsAsync<MyClass>().Result;
}

但是,我遇到的问题与this question中描述的问题非常类似,当请求通过Fiddler路由时,一切正常,但是当Fiddler被禁用时,它会在第4或第5个请求后挂起。

如果问题的原因是相同的,我假设我需要使用HttpClient做更多的事情,以使其在每次请求后完全释放其资源但我无法找到任何显示如何的代码示例这样做。

希望有人能指出我正确的方向。

非常感谢,

1 个答案:

答案 0 :(得分:9)

您没有处置HttpResponseMessage对象。这可以使服务器保持开放流,并且在填充了单个服务器的一些流配额后,将不再发送请求。

using (var client = new HttpClient())
{
    var content = new StringContent(data, Encoding.UTF8, "text/html");
    using(var response = client.PostAsync(url, content).Result)
    {    
        response.EnsureSuccessStatusCode();
        return response.Content.ReadAsAsync<MyClass>().Result;
    }
}