Questions tagged [resume-download]

Tag for questions regarding resuming an interrrupted download - for example, using HTTP Range and Content-range headers.

Tag for questions regarding resuming an interrrupted download - for example, using HTTP Range and Content-range headers.

74 questions
2
votes
2 answers

MonoTorrent to distribute software

Just wondering of what people think of using MonoTorrent and the torrent protocol as the core part of an installer.... Essentially I am creating an installer which has the following requirements: Access through Firewalls/Proxies Runs over…
vdh_ant
  • 12,720
  • 13
  • 66
  • 86
2
votes
0 answers

AFNetworking: download + resume big file?

I'm using AFNetworking to download a big file. Here is my code. It work fine: - (AFDownloadRequestOperation*)downloadBigFile:(BigFileObject*)bigFile withCompleteBlock:(AFResultCompleteBlock)completeBlock …
TienLe
  • 614
  • 2
  • 9
  • 33
2
votes
1 answer

Download file with Resume capability for windows servers

I am building an Auto Updater for a winforms desktop application. When the update is downloading, how can I provide a Resume download capability in case the customers internet connection breaks?
Blankman
  • 259,732
  • 324
  • 769
  • 1,199
2
votes
1 answer

resume and section support in php

sorry if this is not a new question but i'm really stuck in this problem. I'm using script below for downloading a large file like a movie, I can not let user to access direct link of the file, also I need to let user download the file in a resume…
2
votes
0 answers

"The specified network name is no longer available" exception while reading file over the network

I am using the below code using retry pattern to copy files over the network. private int ReadSourceStream(FileStream _sourceStream, Byte[] _buffer) { return _sourceStream.Read(_buffer, 0, BUFFER_SIZE); } In case the network is disconnected…
2
votes
0 answers

How to create Large resumable download from a secured location .NET

I need to preface I'm not a .NET coder at all, but to get partial functionality, I modified a technet chunkedfilefetch.aspx script that uses chunked Data Reading and writing Streamed method of doing file transfer, to get me half-way. iStream = New…
Kelvin H
  • 21
  • 4
2
votes
1 answer

download a file part by part to server using php

There is an internet speed limit in our school about 7kb/s, and we have some php hosts with 300Mb space. But a realized that there are no limits in our php scripts! I wanted to download a file to my host and i did found an answer in this site. Well…
aliqandil
  • 1,673
  • 18
  • 28
1
vote
1 answer

Does WinRT BackgroundTransfer support HTTP Content-Range for resumable downloads?

I need to download large files (200MB) in the background, and it should be resumable in case of interruptions. The server side supports Range Headers so just wondering if this is a supported scenario in BackgroundTransfer agent of WinRT from which…
Jobi Joy
  • 49,102
  • 20
  • 108
  • 119
1
vote
1 answer

does install4j's download file action has the capability to pause and resume the download in version 10?

I want my users to be able to pause and resume where the file download left off during installation since we are managing really big files (a few GB) so if the user wants to pause and resume he can. I'm currently using the 'Download file' action…
1
vote
0 answers

Download resume in chrome is not working even if etag and accept-ranges headers are present

Hi I have problem with configuring my server and nginx proxy to alllow download resuming. In firefox the download is resumed sucessfully, but in Chrome it doesn't allow me to resume download. More specificaly, the button to resume is there, but the…
1
vote
1 answer

install4j's downloadable component resume downloading

I have an install4j's v7 project, with downloadable components. Our clients are on rural areas with poor internet connection, with intermittent connections. After the connection is lost, the user has to retry and the component is downloaded from the…
Manuel B.
  • 387
  • 2
  • 12
1
vote
1 answer

Python urllib2 resume download doesn't work when network reconnects

I'm using urllib2 to make a resuming downloader, roughly based on this method. I can end the program and re-start it, and it starts downloading where it left off, downloading the file that ends up the same size as if it were downloaded all at…
NoBugs
  • 9,310
  • 13
  • 80
  • 146
1
vote
0 answers

Xamarin Android DownloadManager downloads file to 100%, then goes to Queued, and finally says download is Unsuccessful

I am trying to download file from Java Spring backend to my Xamarin Forms app. I am using native Android manager. When I start download, I see new file in Files, and soon it starts downloading, finally reaching 100%. Immediately after that, the file…
1
vote
0 answers

Resume http download. File appends, but size is bigger

URL url; url = new URL("http://download.thinkbroadband.com/5MB.zip"); File fileThatExists = new File("/sdcard/testfile"); URLConnection conexion = url.openConnection(); conexion.setRequestProperty("Range", "bytes=" +…
POMATu
  • 3,422
  • 7
  • 30
  • 42
1
vote
0 answers

Another way to resume if download.cancel(byProducingResumeData: ..) not working

Hi I followed this excellent tutorial on how to download (and resume-download) files to an iPhone. Everything works, except that the service-provider I am downloading the files from somehow does not allow for download-resume to work. Apple says that…
iKK
  • 6,394
  • 10
  • 58
  • 131