test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/EchoImpl.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 126,137 **** ActivationSystem system = ActivationGroup.getSystem(); ActivationGroupID groupID = system.registerGroup(groupDesc); ActivationGroup.createGroup(groupID, groupDesc, 0); EchoImpl impl = new EchoImpl(protocol); ! System.out.println("EchoServer: binding in registry"); ! Naming.rebind("//:" + UseCustomSocketFactory.REGISTRY_PORT + "/EchoServer", impl); System.out.println("EchoServer ready."); } catch (Exception e) { System.err.println("EXCEPTION OCCURRED:"); e.printStackTrace(); --- 126,138 ---- ActivationSystem system = ActivationGroup.getSystem(); ActivationGroupID groupID = system.registerGroup(groupDesc); ActivationGroup.createGroup(groupID, groupDesc, 0); EchoImpl impl = new EchoImpl(protocol); ! int registryPort = Integer.parseInt(System.getProperty("rmi.registry.port")); ! System.out.println("EchoServer: binding in registry on port:" + registryPort); ! Naming.rebind("//:" + registryPort + "/EchoServer", impl); System.out.println("EchoServer ready."); } catch (Exception e) { System.err.println("EXCEPTION OCCURRED:"); e.printStackTrace();