I developed a simple webserver in Delphi. It is a stand-alone type. How can I get the client IP address when a client connects to the server?
I saw this line in the unit: FServer: TIdHTTPWebBrokerBridge;
how can I get the IP of a client which connects to the webserver?
TIdHTTPWebBrokerBridgeis not a standalone web server (TIdHTTPServeris), it is used to connect Indy as the backend for Embarcadero's WebBroker tech. In which case, if you are actually using WebBroker for your server then the client IP is available in theTWebRequest.RemoteAddrproperty.