How do you make an object distributed in CORBA?
Created May 4, 2012
Robert Castaneda To make an ordinary Java object a distributed object in CORBA 2.3 you need to:
1) Write CORBA IDL for your object.
2) Implement the Interface with the Java Object
3) Write a server to publish your object to the CORBA world. In CORBA terms, your Java object becomes known as a "servant"
1) Write CORBA IDL for your object.
2) Implement the Interface with the Java Object
3) Write a server to publish your object to the CORBA world. In CORBA terms, your Java object becomes known as a "servant"