When i send a message from TCPClient to a TCPServer it will be handled using OnExecute event in the server . Now i want to handle the rece
TCPClient
TCPServer
OnExecute
TCP doesn't operate with messages. That is stream-based interface. Consequently don't expect that you will get a "message" on the receiver. Instead you read incoming data stream from the socket and parse it according to your high-level protocol.