complexechoservicetestcase.java

来自「Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应」· Java 代码 · 共 106 行

JAVA
106
字号
/** * ComplexEchoServiceTestCase.java * * This file was auto-generated from WSDL * by the Apache Axis WSDL2Java emitter. */package test.wsdl.echo;public class ComplexEchoServiceTestCase extends junit.framework.TestCase {    public ComplexEchoServiceTestCase(String name) {        super(name);    }    public void testComplexEchoServiceWSDL() throws Exception {        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);    }    public void test1ComplexEchoServiceEcho() {        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 void test2ComplexEchoServiceEcho2() throws Exception {        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 void test2ComplexEchoServiceEcho21() throws Exception {        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    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?