I am having problems with running my HelloWorld Java RMI application. I have the server, remote class and remote interface in one computer and a client and a remote interface in another. The server and registry run fine. When I try to run the client, i receive this error:
Client1 exception: java.rmi.UnmarshalException: error unmarshalling return; nested exception is: java.lang.ClassNotFoundException: Remote_Stub (no security manager: RMI class loader disabled)
I noticed that if I have the Remote_Stub.class file in the same directory as the client, everything works fine. So i figured that my problem is downloading the stub from the server to the client.
I am not quite sure why this is giving me this error or not, but after doing some research I think it has something to do with security as in I dont have permission to download the file from one computer to the other (because it states "no security manager") If that is so, does anyone know how I could solve this problem? Or how I could set the permission?
Thanks!! Micheal