Package org.apache.cxf.anonymous_complex_type

Examples of org.apache.cxf.anonymous_complex_type.SplitNameResponse


        AnonymousComplexType act = actService.getPort(portName, AnonymousComplexType.class);
       
        try {
            SplitName name = new SplitName();
            name.setName("Tom Li");
            SplitNameResponse reply = act.refSplitName(name);
            assertNotNull("no response received from service", reply);
            assertEquals("Tom", reply.getNames().getFirst());
            assertEquals("Li", reply.getNames().getSecond());
        } catch (UndeclaredThrowableException ex) {
            throw (Exception) ex.getCause();
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.anonymous_complex_type.SplitNameResponse

Copyright © 2018 www.massapicom. 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.