Re: [twsocket] HttpCli Downloading Binary Files

2007-05-07 Thread Maurizio Lotauro
Scrive Johnnie Norsworthy <[EMAIL PROTECTED]>: > I am having an issue with downloading by HttpCli. > > I am doing a really simple synchronous download of a binary file: > > HTTP.RcvdStream := TFileStream.Create(UpdateFileName,fmCreate); > HTTP.URL := RemoteFileName; > Application.ProcessMe

[twsocket] HttpCli Downloading Binary Files

2007-05-07 Thread Johnnie Norsworthy
I am having an issue with downloading by HttpCli. I am doing a really simple synchronous download of a binary file: HTTP.RcvdStream := TFileStream.Create(UpdateFileName,fmCreate); HTTP.URL := RemoteFileName; Application.ProcessMessages; HTTP.Get; TFileStream(Http.RcvdStream).Free; The