[omniORB] persistent problems

Uli Syber uli.syber@schraml.de
Tue Dec 10 11:02:01 2002


Hi,

when I start a object (external server application) with a interface method the object pops up but quit after a few seconds although my 
program did nothing. I didnīt uninitialize the COM ability and still have a reference to the object. 
How can I get a persistent reference on a object witch will invoke in a interface method?   

module Example
{	
	interface ServerApp {
  		void startServer();
	};
};
	
void ServerApp_i::startServer()
{
	InitServer* init= new InitServer();	
	init->initServer();				//starts a external application witch disappear after a few seconds
}


with greetings,
Uli