Search code examples
javacorbaorb

POA destroyed issue in java CORBA


I am having a problem in CORBA. My server is running fine. But when I try to connect a client to the server I get this error

org.omg.CORBA.OBJECT_NOT_EXIST: POA destroyed

Does anybody know in which scenario do we get this error ?


Solution

  • Normally, it means that the Corba ObejctReference (possessed in Client side) is not valid in Server side. For exmple, this CorbaObject is not using Persistent policy, if the server is restarted ,then the previous Object reference will be not valid again. To solve this problem, the client need to reobtain the object reference again.