Package org.soapinterop.axis

Examples of org.soapinterop.axis.SOAPStruct


    //    System.out.println(".");
    //    assertTrue("echoStringArray : incorrect return value", Arrays.equals(in, out));
    //}

    public void testStruct() throws Exception {
        SOAPStruct in = new SOAPStruct();
        in.setVarInt(5);
        in.setVarString("Hello");
        in.setVarFloat(103F);
        SOAPStruct out = binding.echoStruct(in);
        assertEquals("echoStruct : incorrect return value : "
            + out + " expected : " + in, in, out);
    }
View Full Code Here

TOP

Related Classes of org.soapinterop.axis.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.