WebRequest extremely slow
本文关键字:slow extremely WebRequest | 更新日期: 2023-09-27 18:03:47
我的方法如下:
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个),就必须等待较早的连接超时。最好使用
using (var response = webRequest.GetResponse()) {...