How to connect a client-server written in different language?
for example I have a server written in GO and a client written in C# they are both using Tcp/IP.
is that even possible?
is that even possible?
Sure and it's done on a regular basis when web clients written in C, C++, go, Python, Perl, C#, Ruby etc communicate with web servers written in C, C++, Javascript, Ruby... whatever. All they need is to agree on a common protocol to use on the "wire", like HTTP, HTTPS etc.