About download file using ASIHttpRequest

13,483

Solution 1

You posted this on the asi http request group at the same time, and got an answer there:

http://groups.google.com/group/asihttprequest/browse_thread/thread/34eced6759cb7327/47aef091a77331fd?lnk=raot#47aef091a77331fd

(If you're going to post your question in multiple places at the same time, it'd at least be polite to record the fact that you've already got an answer!)

Answers were (from BenC, the ASIHTTPRequest author):

1: Yes, you can download any file, of any size. I think the only theoretical limit is the amount of free space you have on the device.

By default, requests will time out if they have not received any data for 10 seconds. You can increase the timeout period by setting the timeoutSeconds property of the request, or change the default with [ASIHTTPRequest setDefaultTimeoutSeconds:x]. Note that this doesn't mean a download must complete in under 10 seconds, only that it must not get stuck for more than 10 seconds.

and:

2: Yes, the resume feature is a good way to handle larger downloads, especially on WWAN connections where losing connectivity is much more common. The two things to remember about resuming downloads are: - You must configure requests to be resumed in advance - if you might want to resume a request at some future point, you must set it up to be resumed before you start the download (see the documentation for details) - Not all downloads can be resumed - the server must support resuming for the resource you are downloading. Generally, resuming is not supported if the content is dynamically generated.

Solution 2

I have encountered the same problem with big files over very unreliable network connection. I have come up a with a solution using ASIHttpRequest to download parts of the simultaneously and concatenating them when done. Here is the code:

https://github.com/anlcan/Happy-Download

Share:
13,483
Forrest
Author by

Forrest

iOS developer with 10+ years software building experience Shanghai,China Skype: forrest.shi.ef Recent App: PushUp! https://itunes.apple.com/us/app/pushup!/id750845921?mt=8

Updated on June 04, 2022

Comments

  • Forrest
    Forrest over 1 year

    I plan to use ASIHttpRequest for downloading files from back-end server. Before actions, post questions here to know more about this feature.

    As sample source codes given : ( demonstrate downloading remote JPG file )

        ASIHTTPRequest *request;
    request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/images/small-image.jpg"]];
    [request setDownloadDestinationPath:[[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"1.png"]];
    [request setDownloadProgressDelegate:imageProgressIndicator1];
    [networkQueue addOperation:request];
    

    My questions are:

    1. It can download any formats files, such as MP3, video file etc ? Any limitations, i,e, file size, time out ?

    Seem like that just need set up the remote file path, "http://allseeing-i.com/ASIHTTPRequest/tests/images/small-image.jpg", then it can download everything remotely with HTTP protocol.

    1. How about the resume function ?

    It provides setting for "RESUME" via YES/NO, is that enough for normal resume feature ? For example, if the file is big, pause it , then hope to resume it from last time.

    Thanks for any inputs or comments, I need investigate this before adopting this into my project. Thanks in advance !