Package org.soapinterop.celtix

Examples of org.soapinterop.celtix.SOAPStruct


    //    List<String> out = port.echoStringArray(in);
    //    assertTrue("echoStringArray : incorrect return value : ", in.equals(out));
    //}

    public void testStruct() throws Exception {
        SOAPStruct in = new SOAPStruct();
        in.setVarInt(6);
        in.setVarString("Rover");
        in.setVarFloat(1010F);
        SOAPStruct out = port.echoStruct(in);
        assertTrue("echoStruct : incorrect return value", equals(in, out));
    }
View Full Code Here

TOP

Related Classes of org.soapinterop.celtix.SOAPStruct

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.