473,397 Members | 2,056 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

VB.NET-APP Downloading file using httpwebrequest/response

59
Hello, i have a program that downloads a file using the httpwebrequest/response, and it usually works, but sometimes it will freeze at a random part of the download without an error.
here is the code:
Expand|Select|Wrap|Line Numbers
  1.   'Creating the request and getting the response
  2.         Dim theResponse As HttpWebResponse
  3.         Dim theRequest As HttpWebRequest
  4.  
  5.         Try 'Checks if the file exist
  6.             theRequest = WebRequest.Create(Me.Filelocation)
  7.             theResponse = theRequest.GetResponse
  8.         Catch ex As Exception
  9.  
  10.             MessageBox.Show("An error occurred while downloading file. Possibe causes:" & ControlChars.CrLf & _
  11.                             "1) File doesn't exist" & ControlChars.CrLf & _
  12.                             "2) Remote server error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
  13.  
  14.             Dim cancelDelegate As New DownloadCompleteSafe(AddressOf DownloadComplete)
  15.  
  16.             Me.Invoke(cancelDelegate, True)
  17.  
  18.             Exit Sub
  19.         End Try
  20.         theRequest.Timeout = 30000
  21.         theRequest.KeepAlive = True
  22.         Dim length As Long = theResponse.ContentLength 'Size of the response (in bytes)
  23.  
  24.         Dim safedelegate As New ChangeTextsSafe(AddressOf ChangeTexts)
  25.         Me.Invoke(safedelegate, length, 0, 0, 0) 'Invoke the TreadsafeDelegate
  26.  
  27.         Dim writeStream As New IO.FileStream(Me.whereToSave, IO.FileMode.Create)
  28.  
  29.         'Replacement for Stream.Position (webResponse stream doesn't support seek)
  30.         Dim nRead As Integer
  31.  
  32.         'To calculate the download speed
  33.         Dim speedtimer As New Stopwatch
  34.         Dim currentspeed As Double = -1
  35.         Dim readings As Integer = 0
  36.  
  37.         Do
  38.             If BackgroundWorker1.CancellationPending Then 'If user abort download
  39.                 Exit Do
  40.             End If
  41.  
  42.             speedtimer.Start()
  43.  
  44.             Dim readBytes(4095) As Byte
  45.             Dim bytesread As Integer = theResponse.GetResponseStream.Read(readBytes, 0, 4096)
  46.  
  47.             nRead += bytesread
  48.             Dim percent As Integer = (nRead / length) * 100
  49.  
  50.             Me.Invoke(safedelegate, length, nRead, percent, currentspeed)
  51.  
  52.             If bytesread = 0 Then Exit Do
  53.  
  54.             writeStream.Write(readBytes, 0, bytesread)
  55.  
  56.             speedtimer.Stop()
  57.  
  58.             readings += 1
  59.             If readings >= 5 Then 'For increase precision, the speed it's calculated only every five cicles
  60.                 currentspeed = 20480 / (speedtimer.ElapsedMilliseconds / 1000)
  61.                 speedtimer.Reset()
  62.                 readings = 0
  63.             End If
  64.         Loop
  65.  
  66.         'Close the streams
  67.         theResponse.GetResponseStream.Close()
  68.         writeStream.Close()
  69.  
  70.         If Me.BackgroundWorker1.CancellationPending Then
  71.  
  72.             IO.File.Delete(Me.whereToSave)
  73.  
  74.             Dim cancelDelegate As New DownloadCompleteSafe(AddressOf DownloadComplete)
  75.  
  76.             Me.Invoke(cancelDelegate, True)
  77.  
  78.             Exit Sub
  79.  
  80.         End If
  81.  
  82.         Dim completeDelegate As New DownloadCompleteSafe(AddressOf DownloadComplete)
  83.         Try
  84.             Me.Invoke(completeDelegate, False)
  85.         Catch ex As Exception
  86.             MsgBox(ex.Message)
  87.         End Try
But im pretty sure my problem is in this part of the code:

Expand|Select|Wrap|Line Numbers
  1.  
  2.  Do
  3.  If BackgroundWorker1.CancellationPending Then 'If user abort download
  4.                 Exit Do
  5.             End If
  6.  
  7.             speedtimer.Start()
  8.  
  9.             Dim readBytes(4095) As Byte
  10.             Dim bytesread As Integer = theResponse.GetResponseStream.Read(readBytes, 0, 4096)
  11.  
  12.             nRead += bytesread
  13.             Dim percent As Integer = (nRead / length) * 100
  14.  
  15.             Me.Invoke(safedelegate, length, nRead, percent, currentspeed)
  16.  
  17.             If bytesread = 0 Then Exit Do
  18.  
  19.             writeStream.Write(readBytes, 0, bytesread)
  20.  
  21.             speedtimer.Stop()
  22.  
  23.             readings += 1
  24.             If readings >= 5 Then 'For increase precision, the speed it's calculated only every five cicles
  25.                 currentspeed = 20480 / (speedtimer.ElapsedMilliseconds / 1000)
  26.                 speedtimer.Reset()
  27.                 readings = 0
  28.             End If
  29.         Loop
Nov 9 '08 #1
7 7745
joedeene
583 512MB
Put a Try...Catch Statement around the WHOLE code, and then in the 'Catch Ex as Exception' line, under that have a message box showing the whole error.

Example:

Expand|Select|Wrap|Line Numbers
  1.       Try
  2.         'All Code
  3.         Catch ex As Exception
  4.             MessageBox.Show(ex.ToString())
  5.         End Try
This should give you an error the error that's happening some point in the code, post back the error and line number so we can help you furthermore. :)

joedeene
Nov 9 '08 #2
raids51
59
i tried that already, but it doesnt show that anythings wrong, the whole program still works but the downloaded freezes at a random place... and it doesnt do it all the time it, its just random.
Nov 9 '08 #3
joedeene
583 512MB
Hmm...This has occurred to me a while ago when I was working with downloading files, but since you're in VB.NET, why not use the My.Computer.Network.DownloadFile() Method, it's kind of the lazy way, but if it works?

joedeene
Nov 10 '08 #4
raids51
59
because i want to get the speed and progress of the download
Nov 13 '08 #5
Plater
7,872 Expert 4TB
Hmm these lines:
theRequest.Timeout = 30000
theRequest.KeepAlive = True
have no effect since you have already called for the response.

Your code does lot of work, is it possible it is getting stuck in a loop somewhere.
Have you set a breakpoint and stepped through your code?
Nov 13 '08 #6
raids51
59
its usually just a random point that it just decides to stop downloading, i did find a quick fix though... instead of using a backgroundworker i just put it all in a different sub and called application.doevents, and this seemed to fix it.
Dec 2 '08 #7
Plater
7,872 Expert 4TB
That was as I thought.
You are in a busy loop somewhere trying to get the rest of the data, but the managed object doesn't know more data has come in, because it never had the chance to get its messages (the doevents() call)
Dec 2 '08 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: lawrence | last post by:
I haven't been able to reach www.php.net for days. Most of the rest of the web is working for me, though I've bad trouble reaching any English sites. Anyone else having trouble?
0
by: Brian Loesgen | last post by:
The next San Diego .Net User Group meeting is Tuesday, November 25, 2003 at the Scripps Ranch Library. Scripps Ranch Library 10301 Scripps Lake Drive San Diego, CA 92131-1026 Please join us...
5
by: Eric Clapton | last post by:
When should I use vb.net and when I should use c#.net? What is pros and cons?
16
by: Terry | last post by:
Hi, I need some feedback. We are converting to .Net and we are trying to decide on whether to use VB.net or C#.net. As far as our current systems, they will probably be rewritten in ASP.Net. I...
2
by: pieter.breed | last post by:
Hi All, The company I work for has traditionally used COM/ActiveX for the solutions that it provides. We are in the process of moving to .NET and a few applications have been written in VB.NET...
3
by: CMan | last post by:
Hi, We are currently trying to install .Net Framework v.1.1 on a server which already has v1.0. We are receiving the following error. Error 1704.An installation for Microsoft .NET Framework...
44
by: lester | last post by:
a pre-beginner's question: what is the pros and cons of .net, compared to ++ I am wondering what can I get if I continue to learn C# after I have learned C --> C++ --> C# ?? I think there...
142
by: Herr Lucifer | last post by:
As the founder of .NET framework, Microsoft claims that it invention will be the next best platform for programming in a near future. Now it is 2005, ..NET is 5 years old, and can talk and walk for...
2
by: Scott Lee via .NET 247 | last post by:
(Please pardon me if this is a duplicate --- not sure if messageposted) Hello, I have been working my tail off developing an ASP.NETapplication. Now that the project is nearing completion,...
9
by: gulu man | last post by:
Hi, What is the substitute for COM objects in .NET? How can I create something similar to com in .net? Is it still possible? Thank you
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.