The Question:
When you UnicastRemoteObject.exportObject(instance). Does that instance now become publicly available to all clients. Even if a little tricky is required to find its port.
This is the situation:
I have a java ...
Hy, basically I want to get SslRMIServerSocketFactory/SslRMIClientSocketFactory to secure my RMI calls. What is the common way to get these when client authentication is also necessary (keystores, certificates, ..)? What do ...
+ generate keystore.jks with keytool
+ exported keystore.cer file with keytool
+ imported keystore.cer file into truststore.jks
+ copied keystore.jks and keystore.cer to the client
I am new to RMI. My question maybe kind of stupid. I am trying to do a collaboration client-server application using RMI. It could be a shared whiteboard or a chatroom. And I try to implement this system such that when any one wants to use this system, then my application needs to get the permission from the user. For example, ...
I am working on client/server architecture wherein I am using RMI to remotely access the server object. Here I call method(set and get method) on the object which will do database update or insert . Presently RMI does not provide authentication of client so any client who is able to get the stub can call the gettter and setter method. Therefore ...
I am trying to use RMI for an application and I am quite new to it. I want to put my client class on say my computer and a server class on another computer that requires authentication for me to access. Is there a way when I make the connection to the other computer to supply authentication information? Is there a ...