如何使用多个RMI服务器绑定单个对象

时间:2012-06-07 10:57:40

标签: java rmi

我是RMI技术的新手,面临以下问题。

我们有多个相同类型的设备连接到本地系统,每个设备上的RMI服务在不同的端口上运行。

当我们尝试通过RMI将单个设备连接到本地系统时,它工作正常。 当我们尝试将第二个设备连接到本地系统时,我们收到如下错误 -

您能帮助我们解决以下问题吗?

提前致谢。



    java.rmi.ConnectException: Connection refused to host: 127.0.0.1; nested exception is: 
        java.net.ConnectException: Connection refused: connect
        at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:601)
        at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:198)
        at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:184)
        at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:322)
        at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
        at java.rmi.Naming.rebind(Naming.java:160)
        at com.rmi.server.RMIServer.exportAndBindObject(Unknown Source)


Demo.java



    this.myRMIServer = new RMIServer(this.RMIServerPort,this.RMIClientPort, new RMISocketFactory());
    this.helloWorld = new HelloWorld();
    this.myRMIServer.exportObject(this.helloWorld);
    this.myRMIServer.exportAndBindObject(this.rmiServiceName, this.helloWorld);

RMIServer.java



    public RMIServer(int port, int rmiPort, java.rmi.server.RMISocketFactory sf)
            throws RemoteException {
        this.sf = sf;
        this.rmiPort = rmiPort;
        this.regPort = port;
        synchronized (this) {
            if (registry == null)
                registry = LocateRegistry.createRegistry(port);
        }
    }

    public void exportAndBindObject(String name, RemoteObject ro)
            throws RemoteException, MalformedURLException {
        exportObject(ro);
        String url = "//127.0.0.1:" + this.regPort + "/" + name;
        Naming.rebind(url, ro);
    }

1 个答案:

答案 0 :(得分:1)

您正在port创建注册表,但在regPort上绑定它,但找不到它。

我不知道this.RMIClientPort的目的是什么。我会摆脱它。 RMI服务器没有考虑客户端端口的业务。

您还要导出HelloWorld对象两次:一次在Demo.java中,您调用exportObject(),一次在RMIServer.exportAndBindObject(),再次调用exportObject()。因此,其中一项操作必定已失败,否则它无法导出任何内容。因此,exportObject()方法存在问题。