获取java.rmi.UnmarshalException:无法识别的方法哈希:远程对象不支持的方法

use*_*919 7 java rmi exception unmarshalling

我是RMI技术的新手.

当我运行rmi客户端程序时,我得到异常:java.rmi.UnmarshalException:无法识别的方法hash:远程对象不支持的方法.我使用的是jdk1.5

远程方法的参数是Serialized对象.

这些是服务器代码......

这是远程接口

package interfacepackage;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface ServerInterface extends Remote{

     public void getOrder(Order order) throws RemoteException;
}
Run Code Online (Sandbox Code Playgroud)

这是服务器实现类

public class ServerImplementation implements ServerInterface {
    public ServerImplementation() throws RemoteException {
    }

    public void getOrderFromCash(Order order) throws RemoteException {
        System.out.println("WORKED");
    }
public static void main(String[] args) 

        try {
            java.rmi.registry.LocateRegistry.createRegistry(1234);
            ServerImplementation service = new ServerImplementation();
            ServerInterface myRemoteObject = (ServerInterface) UnicastRemoteObject
                    .exportObject(service, 0);
            java.rmi.registry.Registry registry = java.rmi.registry.LocateRegistry
                    .getRegistry("localhost", 1234);
            registry.rebind("ServerImplementation", myRemoteObject);


        } catch (Exception ex) {
            ex.printStackTrace();

        }
    }
}
Run Code Online (Sandbox Code Playgroud)

这是班级订单

public class Order implements Serializable{
private static final long serialVersionUID = 1L;
private int id;
private String name;
public Order(int id,String name){
    this.id=id;
    this.name=name;
}
}
Run Code Online (Sandbox Code Playgroud)

我在Client中也有相同的Interface和Order类.

这是客户端代码

public class TestClientProgram {

    public static void main(String[] args)  {
        try{
         java.rmi.registry.Registry registry = java.rmi.registry.LocateRegistry.getRegistry("localhost",1234);
         ServerInterface service=(ServerInterface) registry.lookup("ServerImplementation");
         Order orderObject=new Order(1,"dish");
         service.getOrderFromCash(orderObject);
        }
        catch(Exception e){
            e.printStackTrace();    
        }
        }
    }
Run Code Online (Sandbox Code Playgroud)

任何人都可以帮助我如何解决问题?

在此先感谢Renjith M.

jar*_*bjo 5

异常表示服务端找不到客户端调用的方法(错误信息有点误导)。一种可能的原因可能是服务器和客户端使用不同的类路径运行,并且代码已被修改到足以使 RMI 接口不兼容。