RTC Forums

Subscription => Support => Topic started by: chmichael on February 13, 2010, 01:59:30 PM



Title: HTTP download
Post by: chmichael on February 13, 2010, 01:59:30 PM
Any ideas how to do a HTTP download with the latest RTC ?
If i remember right, previous RTC SDK included a demo with a http download manager ...

Thank you


Title: Re: HTTP download
Post by: D.Tkalcec (RTC) on February 13, 2010, 02:24:55 PM
There was never a "download manager" included in the RTC SDK, but there is a File_Client demo, which demonstrates how to download files from any HTTP or HTTPS server. Take a look at the "File_Client.dpr" project in the "Demos\File_Client" folder.

Please note that (unlike most download managers) the File_Client demo does not implement download resuming. If that is what you need, you will have to extend the demo to use the "Bytes" HTTP header to let your Server know what part of the file you want to download (see HTTP specification).

Best Regards,
Danijel Tkalcec


Title: Re: HTTP download
Post by: chmichael on February 15, 2010, 11:01:55 PM
Thank you!