Author | Topic: HTTP-Filedownload ? | |
---|---|---|
Hubert Brandel | HTTP-Filedownload ? on Sat, 09 Nov 2002 16:24:44 +0100 Hi, i know, FTP ist faster, but I need HTTP-Filedownload because of my firewall. Is this possible with the asinet ? Bye Hubert | |
Uwe Gellhaus | Re: HTTP-Filedownload ? on Sat, 09 Nov 2002 18:20:27 +0100 Hubert Brandel wrote: > i know, FTP ist faster, but I need HTTP-Filedownload because of my firewall. > Is this possible with the asinet ? Yes, in newer asinet versions there is a function called LoadFromUrl(). You can also build your own function with asinet's socket-functions. Regards Uwe | |
Hubert Brandel | Re: HTTP-Filedownload ? on Sat, 09 Nov 2002 20:28:40 +0100 Hi, I can see this function, and tested it to read an URL HTML File. But can I use it for a 200 MB Binary File ? And then the strint to the disk ? Is this a HTML download ? A little confused ... Bye Hubert "Uwe Gellhaus" <nospam@rissoft.de> schrieb im Newsbeitrag news:3dcd4284$1@asgcom.alaska-software.com... > Hubert Brandel wrote: > > > i know, FTP ist faster, but I need HTTP-Filedownload because of my firewall. > > Is this possible with the asinet ? > > Yes, in newer asinet versions there is a function called LoadFromUrl(). > You can also build your own function with asinet's socket-functions. > > Regards > Uwe | |
phil@idep.org.uk | Re: HTTP-Filedownload ? on Sun, 10 Nov 2002 22:53:48 +0000 >I can see this function, and tested it to read an URL HTML File. >But can I use it for a 200 MB Binary File ? And then the strint to the disk >? >Is this a HTML download ? > >A little confused ... It simply sends a request through a socket to the server - whatever comes back through the socket is your file, so save it to disk and it should be ok. Regards, Phil Ide Xbase++ FAQ current release: 8, Monday 4th February 2002, 14:54 *** * Xbase++ FAQ: * online : http://www.idep.org.uk/xbase/xbfaq/xbfaq.htm * : www.software-braun.de/xbfaq/xbfaq.htm * download: http://www.idep.org.uk/xbase/xbfaq.zip * : www.software-braun.de/xbfaq/xbfaq.zip *** | |
Anand Gupta | Re: HTTP-Filedownload ? on Wed, 13 Nov 2002 20:58:15 +0530 I remember playing with LoadFromUrl() and calling a CGI which splits the file (around 10MB splitted to 1MB each) and then once am done with all, I Join them back at the client end. I was trying calling LoadFromURL() to update the client side program in various threads (something like GetRight etc.) HTH Anand "Hubert Brandel" <Hubert.Brandel@gmx.de> wrote in message news:3dcd608a$1@asgcom.alaska-software.com... > Hi, > > I can see this function, and tested it to read an URL HTML File. > But can I use it for a 200 MB Binary File ? And then the strint to the disk > ? > Is this a HTML download ? > > A little confused ... > > Bye > Hubert > > > "Uwe Gellhaus" <nospam@rissoft.de> schrieb im Newsbeitrag > news:3dcd4284$1@asgcom.alaska-software.com... > > Hubert Brandel wrote: > > > > > i know, FTP ist faster, but I need HTTP-Filedownload because of my > firewall. > > > Is this possible with the asinet ? > > > > Yes, in newer asinet versions there is a function called LoadFromUrl(). > > You can also build your own function with asinet's socket-functions. > > > > Regards > > Uwe > > |