FileDocCategorySizeDatePackage
TypeWrapper_ServiceTestCase.javaAPI DocApache Axis 1.42043Sat Apr 22 18:57:26 BST 2006test.wsdl.primitiveWrappers

TypeWrapper_ServiceTestCase

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

Fields Summary
Constructors Summary
public TypeWrapper_ServiceTestCase(String name)

        super(name);
    
Methods Summary
public voidtest1TypeWrapperTestWrapping()

        test.wsdl.primitiveWrappers.TypeWrapper_BindingStub binding;
        try {
            binding = (test.wsdl.primitiveWrappers.TypeWrapper_BindingStub)
                          new test.wsdl.primitiveWrappers.TypeWrapper_ServiceLocator().getTypeWrapper();
        }
        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 operation
        java.lang.Integer value = null;
        Bean bean = new test.wsdl.primitiveWrappers.Bean();
        bean.setPrimitive(5);
        bean.setWrapped(null); // Since this is null it won't appear on the
                               // wire.  We should check that at some point!
        value = binding.testWrapping(new java.lang.Integer(5), bean);
        assertEquals("Wrong result from service", value, new Integer(5));
    
public voidtestTypeWrapperWSDL()

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