我的方法如下:
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分钟(至少比铬长5倍)。还是一样。
有什么想法吗?
修改
这似乎与MS技术有关。在IE上,这个JSON也不会加载。
答案 0 :(得分:0)
确保关闭您的请求。否则,一旦达到允许的最大连接数(对于我来说,一次只有四个),你必须等待早先的连接超时。最好使用
完成using (var response = webRequest.GetResponse()) {...