Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am running an RMI server on a VM, but I keep getting this error:

Failure during Name registration: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: MarketBBImpl_Stub

Failure during Name registration: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: AMPLocation_Stub

All of the class files are in the same directory(including the stub files), and when I run it localy there are no problems.

Anyone know what's going on here?

share|improve this question

2 Answers

up vote 1 down vote accepted

If you look at the stack trace you will probably see bind() or rebind() down there. That indicates that the server concerned is the RMI Registry. It needs access to your classes via its CLASSPATH.

share|improve this answer

Have you run http server to deliver classes to RMI server?

share|improve this answer
(a) you aren't obliged to use the codebase feature; (b) it delivers class files to the Regsitry and the client, rarely to the server. – EJP Mar 4 '11 at 0:27
2  
By RMI server I meant RMI registry. Is it hard to understand?? – damluar Mar 4 '11 at 6:59
i'm a bit lost here. i'm running the rmiregistry on the same machine as the program that's trying to bind the objects. i thought that if the objects were in the same location then this would work without a http server? – ryanthescot Mar 5 '11 at 18:23
You have 2 variants: 1) is simple, provide registry and client with classes just copying them and setting classpath 2) you can make dynamic loading of classes using http server. So if want to keep it simple just make sure that when you start RMI registry and client you tell them classpath – damluar Mar 6 '11 at 8:06
yes, actually, it is a bit hard to understand. In the RMI context 'server' usually means the remote object, or else the host it is running on. It can also mean the DGC remote object. Best to be specific. – EJP Mar 11 '11 at 6:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.