Posted By:
Xavier_Drudis
Posted On:
Thursday, June 14, 2001 11:06 AM
Hi, I have two CORBA servers, with its servants. Call them Killer and killed. I want "Killer" to invoke an operation on "killed" so that when "killed" recieves it, it must die. The obvious implementation gives a Communication error: (killed servant) void killme() { System.exit(0); } I think I could do the dirty trick of catching the communication exception and ignore it, but there must be something better. Any suggestion would be highly appreciated. Thank you in advance!!
More>>
Hi, I have two CORBA servers, with its servants. Call them Killer and killed.
I want "Killer" to invoke an operation on "killed" so that when "killed" recieves it, it must die.
The obvious implementation gives a Communication error:
(killed servant)
void killme() {
System.exit(0);
}
I think I could do the dirty trick of catching the communication exception and
ignore it, but there must be something better.
Any suggestion would be highly appreciated. Thank you in advance!!
<<Less