操作已超时~System.Net.WebException:操作已超时

时间:2017-06-29 15:47:30

标签: c# http web

操作已超时~System.Net.WebException:操作已在System.Net.HttpWebRequest.GetRequestStream()

的System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)超时

每秒多次请求对http服务器进行负载测试。在几百个成功的请求和响应之后,新请求被卡住,并且在达到超时值(超时= 30秒)之后,抛出请求超时异常。 我找到的所有解决方案都是关于正确关闭流,我希望我这样做。 任何有关解决超时问题的帮助将不胜感激。感谢。

  using (System.IO.Stream requestStream = client.GetRequestStream())
  {
                    requestStream.Write(content, 0, content.Length);

                    requestStream.Close();

                }

0 个答案:

没有答案