How to get http request in Delphi 7?

Which component is best used to receive HTTP requests in a Delphi application?

+5
source share
4 answers

Indy is the way to go. but you need a server component, not a client component. TIDHTTPServer must match a vector

+6
source

Do not forget the ICS . It may not be as easy to use as Indy, but very powerful. Supports http and https.

+5
source

, , Synapse TCP/IP. , HTTP-.

+2

I already played with HTTP components, and I also implemented IInternetProtocol for integration with Internet Explorer and creating ISAPI extensions for integration with IIS. I started http://xxm.sourceforge.net/ to open the source code, and combine it with a common interface, pre-parser and auto-compile, so I could join HTML and Delphi in the same source files and code sites that and PHP, Cold Fusion, and oldskool ASP.

+1
source

All Articles