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

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


        try {
            Service1Interface proxy = (Service1Interface) RMIClientProxy.createProxy(Service1Interface.class,
                       "http://localhost:8085/axis2/services/Service1");

            Date date = new Date();
            Date result = proxy.method6(date);
            assertEquals(date.getDate(), result.getDate());
        } catch (AxisFault axisFault) {
            axisFault.printStackTrace();
        }
    }
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.