在执行POST时,无法将HttpWebRequest超时设置为高于100秒?

时间:2011-10-20 21:51:52

标签: c# httpwebrequest timeout http-post

我遇到的问题是HttpWebRequest在执行POST时不会超过100秒的超时值。但是,如果请求是GET,则会遵循高于100秒的超时值。在.GetResponse()调用时抛出超时异常。我正在设置我能够发现的所有超时值,但似乎我错过了一个,或者框架中有一个错误。

这是一个针对.NET Framework 3.5的C#应用​​程序,使用Visual Studio 2008构建.Web服务器是IIS 6.0,连接超时设置为默认的120秒,启用了保持活动...再次GET请求尊重我指定的超时值,如果< = 100秒,POST请求将遵守超时。

这是我的代码:

int timeout = 200000; // 200 seconds
HttpWebRequest proxyRequest = (HttpWebRequest)WebRequest.Create(serverUrl);
proxyRequest.Accept = clientRequest.AcceptTypes.ToDelimitedString(", ");
proxyRequest.Method = "POST"
proxyRequest.UserAgent = clientRequest.UserAgent;
proxyRequest.Timeout =  timeout;
proxyRequest.ReadWriteTimeout = timeout;
proxyRequest.KeepAlive = false;
proxyRequest.AllowAutoRedirect = false;
proxyRequest.ServicePoint.Expect100Continue = false;
proxyRequest.ServicePoint.MaxIdleTime = timeout;
proxyRequest.ServicePoint.ConnectionLeaseTimeout = -1;

try
{
    // add post data
    request.ContentType = "application/x-www-form-urlencoded";
    byte[] postData = Encoding.UTF8.GetBytes("somedata=7&moredata=asdf");
    // set some post data
    request.ContentLength = postData.Length;
    using (Stream stream = request.GetRequestStream())
    {
        stream.Write(postData, 0, postData.Length);
        stream.Close();
    }

    // UPDATE
    // don't set Timeout here! It will be ignored
    // proxyRequest.Timeout = timeout;

    // Timeout exception thrown here if GetResponse doesn't return within 100 seconds
    // even though the Timeout value is set to 200 seconds.
    using (HttpWebResponse proxyResponse = (HttpWebResponse)proxyRequest.GetResponse())
    {
        using (Stream stream = proxyResponse.GetResponseStream())
        {
            using (StreamReader reader = new StreamReader(stream, Encoding.Default))
            {
                string content = reader.ReadToEnd();
                [other pointless code for this example]
                reader.Close();
            }
            stream.Close();
        }
        proxyResponse.Close();
    }
}
finally
{
    proxyRequest.Abort();
}

当我将超时值设置为5秒时,我将在5秒后收到超时异常,正如人们所期望的那样。这证明Timeout值未被完全忽略。

还有其他人遇到过这个问题吗?使用Async版本的GetResponse会解决这个问题吗?欢迎任何和所有的想法,我已经坚持了几天。

更新

如果我不发布任何数据(这不是很有用),我可以让POST尊重超时值。但是,只要我发布任何数据,ContentLength就是> 0,超过100秒。此外,不涉及任何代理。

更新2

在示例中添加了POST数据,并在不设置Timeout属性

的位置添加了注释

2 个答案:

答案 0 :(得分:22)

我明白了。这是一个DRY编码回来并咬我的屁股的例子。上面的代码是我的真实代码的解释,因此上面的代码将正常工作。

问题是在我已经调用 proxyRequest.GetRequestStream()来添加POST数据之后,我正在设置超时值。因为我设置了超时 ReadWriteTimeout 属性,所以最短的超时时间就是赢了。在POST请求的情况下,即使框架让我在调用GetRequestStream之后设置Timeout值,它也会忽略设置的任何值(而是使用默认的100秒,即使在设置它之后检查Timeout属性显示它是设置为我所期望的)。我希望设置Timeout属性与设置ReadWriteTimeout属性相同:如果在调用GetRequestStream后尝试设置ReadWriteTimeout属性,则会抛出异常。如果Timeout做了同样的事情,那将节省我一点时间。我应该早点抓住这个,但我会把它归结为学习经历。

故事的寓意:在创建HttpWebRequest时立即设置所有超时属性。

答案 1 :(得分:3)

您的客户端和服务器之间是否有Web代理?也许这本身就是使用超时。

我建议您使用Wireshark来查看网络级别发生的情况 - 特别是网络上是否发生了100秒的事情。