Dowload file synchronously from multi-server with Split Capability

nullstring

New member
Joined
Feb 17, 2007
Messages
1
Programming Experience
5-10
i hope somebody can help me this one
this is a advance FTP or Download Manager development.. this is like Download Accelerator Plus
where files is splited and it can be downloaded from any server. well downloading from any server is not a problem, the main thing here is, the file can be split or for example:
i want to download filename.zip(65536 bytes) then i have 4 servers
server 1 will download 1 to 16384 bytes
server 2 will download (16384+1) to 16384*2

server 3 will download (16384*2)+1 to 16384*3
server 4 will download (16384*3)+1 to (16384*4)-3
so thats it... i think Stream Class can be use here.. but i havn't tried it yet..
you guys? what do you think? can you help?
 
Some info to get you started if you're connecting to Http/Ftp servers: http://www.vbdotnetforums.com/showthread.php?t=15827

If you're creating the server yourself with Sockets/Remoting/Webservice you can define the server method to return any particular file and range of course.
 
Back
Top