C#HTTP PUT请求代码问题

时间:2011-08-23 19:08:37

标签: c# http web

我正在尝试通过Amazon S3已经为我生成的PUT请求URL向S3发送文件。

我的代码适用于小文件,但在发送几分钟后,它在大文件(> 100 MB)上出错。

出现错误: 请求已中止:请求已取消。在System.Net.ConnectStream.InternalWrite(布尔异步,字节[]缓冲区,Int32偏移,Int32大小,AsyncCallback回调,对象状态)    在System.Net.ConnectStream.Write(Byte []缓冲区,Int32偏移量,Int32大小)

有人可以告诉我我的代码有什么问题阻止它发送大文件吗?这不是由于Amazon PUT请求URL过期,因为我将其设置为30分钟,并且在发送几分钟后就会出现问题。

代码最终在这行代码中出现异常:dataStream.Write(byteArray, 0, byteArray.Length);

再一次,它适用于我发送给S3的较小文件。只是不是大文件。

WebRequest request = WebRequest.Create(PUT_URL_FINAL[0]);
//PUT_URL_FINAL IS THE PRE-SIGNED AMAZON S3 URL THAT I AM SENDING THE FILE TO

request.Timeout = 360000; //6 minutes

request.Method = "PUT";

//result3 is the filename that I am sending                                     
request.ContentType =
    MimeType(GlobalClass.AppDir + Path.DirectorySeparatorChar + "unzip" +
             Path.DirectorySeparatorChar +
             System.Web.HttpUtility.UrlEncode(result3));

byte[] byteArray =
    File.ReadAllBytes(
        GlobalClass.AppDir + Path.DirectorySeparatorChar + "unzip" +
        Path.DirectorySeparatorChar +
        System.Web.HttpUtility.UrlEncode(result3));

request.ContentLength = byteArray.Length;
Stream dataStream = request.GetRequestStream();

// this is the line of code that it eventually quits on.  
// Works fine for small files, not for large ones
dataStream.Write(byteArray, 0, byteArray.Length); 

dataStream.Close();

//This will return "OK" if successful.
WebResponse response = request.GetResponse();
Console.WriteLine("++ HttpWebResponse: " +
                  ((HttpWebResponse)response).StatusDescription);

4 个答案:

答案 0 :(得分:2)

使用FiddlerWireshark来比较线路工作时的线路(第三方工具)和不工作时(代码)...一旦你知道差异你可以相应地改变你的代码......

答案 1 :(得分:2)

您应该将TimeoutWebRequest属性设置为更高的值。它会导致请求在完成之前超时。

答案 2 :(得分:1)

我会尝试用块编写它并拆分字节数组。它可能会在一个大块上窒息。

这样的事情:

        const int chunkSize = 500;
        for (int i = 0; i < byteArray.Length; i += chunkSize)
        {
            int count = i + chunkSize > byteArray.Length ? byteArray.Length - i : chunkSize;
            dataStream.Write(byteArray, i, count);
        }

可能要仔细检查以确保它写完所有内容,我只对它进行了非常基本的测试。

答案 3 :(得分:0)

只是一个粗略的猜测,但你不应该:

request.ContentLength = byteArray.LongLength;

而不是:

request.ContentLength = byteArray.Length;

第二个想法,100 MB = 100 * 1024 * 1024&lt; 2 ^ 32,所以它可能不会是问题