Reputation: 1150
i'm working on a project thata i need develop one web service ( in java ) that get one simple number from a Corba python implementation... how can i proceed with this??
im using omniOrb and already done the server.py that genetares one simple number!
thx a lot
Upvotes: 0
Views: 428
Reputation: 11638
You will need a Java CORBA provider - for example IONA or JacORB. Generate the IDL files for your python service and then use whatever IDL -> stub compiler your Java ORB provides to generate the java client-side bindings.
From there it should be as simple as binding to the corbaloc:// at which your python server is running and executing the remote calls from your java stubs.
Of course, CORBA being CORBA, it is likely to require the ritual sacrifice of small mammals and, possibly, lots of candles.
Upvotes: 4