How can I test whether an object is already exported? I migrate objects from host to host. Before I copy an object (with its state) to another node, I have to unexport the object with UnicastRemoteObject.unexportObject(this, true), but this method throws a java.rmi.NoSuchObjectException: object not exported if the object has not yet been exported.
What I am looking for is a method to test whether an object is already exported (without catching an exception and without unexporting the object). With respect to the result, the test should have the same behavior as the following method:
boolean isExported(Object x) {
boolean result = false;
try {
UnicastRemoteObject.unexportObject(this, true);
result = true;
UnicastRemoteObject.exportObject(this, 0);
} catch (Exception e) {
}
return result;
}
Thanks for your help.