tags:

views:

459

answers:

2

Hi evrybody,

iam doing some simulation and i have writting an application using java who communicate with a server writting in c\c++. The problem it is not working and i want to know if it's possible?

I don't want to use Corba or something like that.. thanks for your Help.

+1  A: 

We'll need a lot more information to diagnose the actual problem, but yes, a java program can definitely communicate with a C/C++ server over TCP/IP.

Graeme Perrow
A: 

It's very possible, even (especially?) using pure tcp sockets. A socket is a socket in any language... The data you send across it may need some interpreting, however.

Cogsy