FileDocCategorySizeDatePackage
ComplexEchoServiceTestCase.javaAPI DocApache Axis 1.44486Sat Apr 22 18:57:26 BST 2006test.wsdl.echo

ComplexEchoServiceTestCase

public class ComplexEchoServiceTestCase extends TestCase
ComplexEchoServiceTestCase.java This file was auto-generated from WSDL by the Apache Axis WSDL2Java emitter.

Fields Summary
Constructors Summary
public ComplexEchoServiceTestCase(String name)

        super(name);
    
Methods Summary
public voidtest1ComplexEchoServiceEcho()

        test.wsdl.echo.Echo binding;
        try {
            binding = new test.wsdl.echo.ComplexEchoServiceLocator().getComplexEchoService();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        try {
            test.wsdl.echo.MyComplexType complexType = new test.wsdl.echo.MyComplexType();
            test.wsdl.echo.holders.MyComplexTypeHolder complexTypeHolder = 
                    new test.wsdl.echo.holders.MyComplexTypeHolder(complexType);  
            binding.echo(complexTypeHolder);
            assertTrue(complexTypeHolder.value.getSimpleItem().equals("MY_SIMPLE_ITEM"));
        }
        catch (java.rmi.RemoteException re) {
            throw new junit.framework.AssertionFailedError("Remote Exception caught: " + re);
        }
    
public voidtest2ComplexEchoServiceEcho2()

        test.wsdl.echo.ComplexEchoServiceSoapBindingStub binding;
        try {
            binding = (test.wsdl.echo.ComplexEchoServiceSoapBindingStub)
                    new test.wsdl.echo.ComplexEchoServiceLocator().getComplexEchoService();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertNotNull("binding is null", binding);
        // Time out after a minute
        binding.setTimeout(60000);
        test.wsdl.echo.MyComplexType2 request = new test.wsdl.echo.MyComplexType2();
        request.setUsername("xxx");
        request.setPassword("yyy");
        request.setOptions(new NamedValue[]{
            new NamedValue("dummy1", "dummy_val1"),
            new NamedValue("dummy2",
                    new NamedValueSet (new NamedValue[]{
                        new NamedValue("dummy2-1", "val2-1"),
                        new NamedValue("dummy2-2", new Integer(314))
                    }))
        });
        // Test operation
        test.wsdl.echo.NamedValue[] value = null;
        value = binding.echo2(request);
        // TBD - validate results
    
public voidtest2ComplexEchoServiceEcho21()

        test.wsdl.echo.ComplexEchoServiceSoapBindingStub binding;
        try {
            binding = (test.wsdl.echo.ComplexEchoServiceSoapBindingStub)
                    new test.wsdl.echo.ComplexEchoServiceLocator().getComplexEchoService();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertNotNull("binding is null", binding);
        // Time out after a minute
        binding.setTimeout(60000);
        test.wsdl.echo.MyComplexType2 request = new test.wsdl.echo.MyComplexType2();
        request.setUsername("xxx");
        request.setPassword("yyy");
        request.setOptions(new NamedValue[]{
            new NamedValue("dummy1", "dummy_val1"),
            new NamedValue("dummy2", new NamedValue[]{
                new NamedValue("dummy2-1", "val2-1"),
                new NamedValue("dummy2-2", new Integer(314))
            })
        });
        // Test operation
        test.wsdl.echo.NamedValue[] value = null;

        value = binding.echo2(request);
        // TBD - validate results
    
public voidtestComplexEchoServiceWSDL()

        javax.xml.rpc.ServiceFactory serviceFactory = javax.xml.rpc.ServiceFactory.newInstance();
        java.net.URL url = new java.net.URL(new test.wsdl.echo.ComplexEchoServiceLocator().getComplexEchoServiceAddress() + "?WSDL");
        javax.xml.rpc.Service service = serviceFactory.createService(url, new test.wsdl.echo.ComplexEchoServiceLocator().getServiceName());
        assertTrue(service != null);