I have a simple Client/Server system running that works well.
I can tell if an incoming connection is from the same IP address as an existing connection, however, I cannot tell if it is the same app or not? (eg if someone starts another version of the app on that machine).
(There can be a scenario where two different apps from the same machine connect to the server application, I want to be able to determine which has connected).
Is there a way I can load info into the outgoing client TcpClient variable for evaluation at the server end? Or another method? GUID perhaps?
Thanks.