Question

I was wondering whether different (high/mid level) languages (c/c++/java/c#) supporting basic networking features like sockets, can work/communicate together on different platforms?

Are there any existing projects (open or otherwise) to make it happen?

Was it helpful?

Solution

Yes, of course. TCP/IP sockets are language independent standard. For example, you can open a socket in Java client it can connect to a listening server written in C++ or any other language. AJAX is another example.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top