Examples of SOAPServiceRPCLit


Examples of org.objectweb.hello_world_rpclit.SOAPServiceRPCLit

        QName serviceName =
            new QName("http://objectweb.org/hello_world_rpclit", "SOAPServiceRPCLit6");
        QName portName =
            new QName("http://objectweb.org/hello_world_rpclit", "SoapPortRPCLit6");

        SOAPServiceRPCLit service = new SOAPServiceRPCLit(wsdl, serviceName);
        assertNotNull(service);

        String response1 = new String("TestGreetMeResponse");
        String response2 = new String("TestSayHiResponse");
        try {
            GreeterRPCLit greeter = service.getPort(portName, GreeterRPCLit.class);
            for (int idx = 0; idx < 1; idx++) {
                String greeting = greeter.greetMe("Milestone-" + idx);
                assertNotNull("no response received from service", greeting);
                assertEquals(response1, greeting);
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.