I am implementing a CORBA server object in CORBA client side. I wanted to start this CORBA server object from a client program but in a separate JVM. How can I do that?
Created May 4, 2012
Bruce Martin CORBA's Basic Object Adaptor supports object activation on demand. The client just uses the object
reference and if an object server implementing the object is not running, the BOA
will automatically start a server to service the request. Different CORBA products handle the
administration of this slightly differently. For example, in VisiBroker, you need to register an object
with the Object Activation Daemon in order for the BOA to activate the object.