Search code examples
delphidelphi-2010datasnap

How to get the client IP in DataSnap 2010


Someone can tell me how to get the client ip of a connected session from the server side?.

Thanks


Solution

  • procedure TMyDSService.DataSnapServerConnect(DSConnectEventObject: TDSConnectEventObject);
    var
      Conn: TIdTCPConnection;
    begin
       Conn := TIdTCPConnection(DSConnectEventObject.ChannelInfo.Id);
       Trace('Client ' + Conn.Socket.Binding.PeerIP +':' + IntToStr(Conn.Socket.Binding.PeerPort));
       Trace('Client info: ' + DSConnectEventObject.ChannelInfo.Info);
    end;