i'm working on download manager project and i'm using :
public Stream GetStream(string url)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
return response.GetResponseStream();
}
then use the returned stream as input stream and FileStream as output stream in while statement :
Stream InputStream = GetStream("http://test_url/test.zip");
Stream OutputStream = new FileStream("d:\\test.zip", FileMode.Create, FileAccess.Write));
do
{
readSize = InputStream.Read(buffer, 0, buffSize);
OutputStream.Write(buffer, 0, (int)readSize);
}
while (readSize > 0);
when downloading a file over 50MB using my 256kpps connection after about 20 - 30 MB, readSize become 0 without errors
my question is : is there anything wrong with Response object , is it disposed???? or what is the problem?
Thank you in advance, and i'm sorry if i can't explain better.
You aren't disposing your HttpWebRequest / HttpWebResponse objects, which could be causing a problem - there is a built-in limit to the number of concurrent connections to the same server.
You should be doing something like:
Stream.CopyTo
is new in .NET 4.0. If you're using .NET <= 3.x you'll need to write your own.