Package org.soapinterop

Examples of org.soapinterop.SingleTag


    private ClassLoader oldCL;
   
    public void testSingleTag() throws RemoteException {

        // Create the input
        SingleTag input=(SingleTag)dataFactory.create(SingleTag.class);
       
        // Invoke the service
        SingleTag output=interopDoc.SingleTag(input);
       
        // Test the results
        assertNotNull(output);
       
    }
View Full Code Here


    public InteropDocClientTestCase(){};

    public void testSingleTag() throws RemoteException {

        // Create the input
        SingleTag input = (SingleTag) dataFactory.create(SingleTag.class);

        // Invoke the service
        SingleTag output = interopDoc.SingleTag(input);

        // Test the results
        assertNotNull(output);

    }
View Full Code Here

    public void testSingleTag() throws RemoteException {

        assertNotNull(interopDoc);
       
        // Create the input
        SingleTag input = (SingleTag) dataFactory.create(SingleTag.class);

        // Invoke the service
        SingleTag output = interopDoc.SingleTag(input);

        // Test the results
        assertNotNull(output);

    }
View Full Code Here

TOP

Related Classes of org.soapinterop.SingleTag

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.