1

我的方法如下所示:

public string Request(string action, NameValueCollection parameters, uint? timeoutInSeconds = null)
{
    parameters = parameters ?? new NameValueCollection();
    ProvideCredentialsFor(ref parameters);

    var data = parameters.ToUrlParams(); // my extension method converts the collection to a string, works well

    byte[] dataStream = Encoding.UTF8.GetBytes(data);
    string request = ServiceUrl + action;
    var webRequest = (HttpWebRequest)WebRequest.Create(request);
    webRequest.AllowAutoRedirect = false;
    webRequest.Method = "POST";
    webRequest.ContentType = "application/x-www-form-urlencoded";
    webRequest.ContentLength = dataStream.Length;
    webRequest.Timeout = (int)(timeoutInSeconds == null ? DefaultTimeoutMs : timeoutInSeconds * 1000);
    webRequest.Proxy = null; // should make it faster...

    using (var newStream = webRequest.GetRequestStream())
    {
        newStream.Write(dataStream, 0, dataStream.Length);
    }
    var webResponse = (HttpWebResponse)webRequest.GetResponse();

    string uri = webResponse.Headers["Location"];

    string result;
    using (var sr = new StreamReader(webResponse.GetResponseStream()))
    {
        result = sr.ReadToEnd();
    }


    return result;
}

服务器发送 JSON 作为响应。它适用于小型 JSON,但是当我请求大型 JSON 时 - 出现问题。大我的意思是需要1-2分钟才能出现在浏览器中的东西(谷歌浏览器,包括服务器端生成时间)。它实际上是 412KB 的文本。当我尝试使用上述方法请求相同的 JSON 时,我得到一个 Web 异常(超时)。我将超时更改为 10 分钟(至少比 chrome 长 5 倍)。还是一样。

有任何想法吗?

编辑

这似乎与 MS 技术有关。在 IE 上,这个 JSON 也不会加载。

4

1 回答 1

0

确保关闭您的请求。否则,一旦您达到允许的最大连接数(对我来说,有一次低至四个),您必须等待较早的连接超时。最好使用

using (var response = webRequest.GetResponse()) {...
于 2013-08-12T08:44:07.477 回答