Pergunta

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?

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top