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?

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top