Package sample.rmi.server

Examples of sample.rmi.server.Service4Interface.method3()


        try {
            Service4Interface proxy =
                    (Service4Interface) RMIClientProxy.createProxy(Service4Interface.class,
                            this.configurator,
                            "http://localhost:8080/axis2/services/Service4");
            String[] result = proxy.method3("Param1","Param2","Param3");
            System.out.println("Object 1 ==>" + result[0]);
            System.out.println("Object 2 ==>" + result[1]);
            System.out.println("Object 3 ==>" + result[2]);

        } catch (Exception e) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.