Results 1 to 3 of 3

Thread: Multiple Downloads at Single http request

  1. #1
    Join Date
    Feb 2009
    Posts
    35

    Multiple Downloads at Single http request

    Hello,

    Can anyone tell me whether We could launch a Multiple Downloads at a single HTTP request, this would be requires when we have to downloads the Multiple file sent over the internet, this will save lot of time for downloads.

    Thanks for your support.

  2. #2
    Join Date
    Jan 2006
    Posts
    211

    Re: Multiple Downloads at Single http request

    For Multiple downloading of files you may also use a certain zip file which will store the multiple files and download all of them at a single time this will be reasonable since the Web page's response is stream based and each request will only return a single response stream. And we generally put html stream as output when return web page and return a certain file stream when process file download request. But it's not suitable to put multiple file's stream into one response stream since the client browser is unable to parse it

  3. #3
    Join Date
    Dec 2008
    Posts
    161

    Re: Multiple Downloads at Single http request

    I've have done the things in a following variety of ways.

    1. zip all files and download the zip via a form (then use ZZip to decompress and save)

    2. stick a whole bunch of form fields on a page for downloading files

    3. Stick one form field on a page and continually send page to itself while loading files into a session variable. Include a button on the page for final submission.

    But yes, loading multiple files in one pass? Bad idea. Takes a long time, chances of failure are higher and locks up web server resources until the load finishes

Similar Threads

  1. SMS from Python using HTTP request
    By thomasqueen in forum Software Development
    Replies: 1
    Last Post: 12-02-2013, 10:46 AM
  2. Send Http Request In Java
    By ramsun in forum Software Development
    Replies: 5
    Last Post: 26-02-2010, 09:55 PM
  3. HTTP request attributes
    By KAIRU26 in forum Software Development
    Replies: 3
    Last Post: 24-11-2009, 05:59 PM
  4. How to fix http 400 bad request
    By Beans in forum Technology & Internet
    Replies: 3
    Last Post: 22-08-2009, 05:32 PM
  5. HTTP 400 Bad Request
    By adyf in forum Vista Help
    Replies: 2
    Last Post: 04-11-2008, 02:33 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,095,263.89371 seconds with 16 queries