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 si开发者_运维知识库de?.
Thanks
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;
You query the Request.RemoteAddr
to get the ip address of the attached client.
精彩评论