RaelB 4 Posted January 24 Hello, Delphi's THttpClient is built on the OS API, and therefore one does not need to include OpenSSL dll with the app, or worry about their version etc. Is there an open source library similar to this, that can be used with older Delphi versions before THttpClient was introduced..? Share this post Link to post
Dave Nottage 557 Posted January 24 5 minutes ago, RaelB said: Is there an open source library similar to this, that can be used with older Delphi versions before THttpClient was introduced..? This may be what you're after: https://github.com/synopse/mORMot/blob/master/SynCrtSock.pas 1 Share this post Link to post
Vincent Parrett 750 Posted January 24 Depending on what features you need and Delphi version you need, this might work for you https://github.com/VSoftTechnologies/VSoft.HttpClient (has a dependency on https://github.com/VSoftTechnologies/VSoft.CancellationToken). Share this post Link to post
RaelB 4 Posted January 25 @Dave and @Vincent, thanks, that is what I was looking for. Share this post Link to post