Shermano
Shermano

Reputation: 1150

Corba python integration with web service java

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

Answers (1)

mcfinnigan
mcfinnigan

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

Related Questions