I have an RMI client that connects to some RMI server just to let it know it can use this new client.
Can I pass directly some Remote object so that:
serverRemoteObject.registerClient(theClientRemoteObjectTheServerShouldUse);
will actually give the server some object he can use without connecting to my client? The following question says it is possible, but no real example was given:
Is it possible to use RMI bidirectional between two classes?
Andrew