C#HttpWebRequest.GetRequestStream()在使用Proxy时死亡

时间:2012-07-08 20:40:25

标签: c# proxy httpwebrequest

我有以下代码:

        HttpWebRequest request = createRequest("http://somesite", true);
        request.Method = "POST";
        request.ContentType = "application/x-www-form-urlencoded";
        request.Headers.Add("Accept-Encoding", "gzip, deflate");
        request.Proxy = new WebProxy("what:ever");

        string postData = "my data";
        byte[] byteArray = Encoding.UTF8.GetBytes(postData);
        request.ContentLength = byteArray.Length;

        using (var dataStream = request.GetRequestStream())
        {
            dataStream.Write(byteArray, 0, byteArray.Length);
            dataStream.Flush();
        }

当我要求VS打破第一次机会CLR异常时,request.GetRequestStream()在内部抛出NullReferenceException,然后向我的代码抛出System.Net.WebException(超时)异常。

当我禁用代理(直接工作)时,它可以工作。

它在家里的电脑上运行得很好但不在这里(租用的公寓,不同的互联网连接)。

我在两台机器上使用相同的设置。 找不到任何东西。

感谢。

1 个答案:

答案 0 :(得分:0)

好吧,更改实现以使用WebClient.UploadData似乎可以解决问题。谢谢。