Package org.apache.axis2.rmi.server.services

Examples of org.apache.axis2.rmi.server.services.Service1Interface.method5()


            Service1Interface proxy = (Service1Interface) RMIClientProxy.createProxy(Service1Interface.class,
                    "http://localhost:8085/axis2/services/Service1");
            Map param1 = new HashMap();
            param1.put("key1", "value1");
            param1.put("key2", "value2");
            Map result = proxy.method5(param1);
            assertTrue(result.containsKey("key1"));
            assertTrue(result.containsKey("key2"));
            assertEquals(result.get("key1"), "value1");
            assertEquals(result.get("key2"), "value2");
        } catch (AxisFault axisFault) {
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.