⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rpcenctestcase.java

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 JAVA
字号:
package test.wsdl.interop3.rpcEnc;import test.wsdl.interop3.rpcEnc.xsd.SOAPStruct;import java.net.URL;/*    <!-- SOAP Builder's round III web services          -->    <!-- interoperability testing:  import1             -->    <!-- (see http://www.whitemesa.net/r3/plan.html)    -->    <!-- Step 1.  Start with predefined WSDL            -->    <!-- Step 2.  Generate client from predefined WSDL  -->    <!-- Step 3.  Test generated client against         -->    <!--          pre-built server                      -->    <!-- Step 4.  Generate server from predefined WSDL  -->    <!-- Step 5.  Test generated client against         -->    <!--          generated server                      -->    <!-- Step 6.  Generate second client from           -->    <!--          generated server's WSDL (some clients -->    <!--          can do this dynamically)              -->    <!-- Step 7.  Test second generated client against  -->    <!--          generated server                      -->    <!-- Step 8.  Test second generated client against  -->    <!--          pre-built server                      -->*/public class RpcEncTestCase extends junit.framework.TestCase {    static URL url;    public RpcEncTestCase(String name) {        super(name);    }    protected void setUp() throws Exception {    }    public void testStep3() throws Exception {        WSDLInteropTestRpcEncPortType binding;        try {            if (url != null) {                binding = new WSDLInteropTestRpcEncServiceLocator().getWSDLInteropTestRpcEncPort(url);            } else {                binding = new WSDLInteropTestRpcEncServiceLocator().getWSDLInteropTestRpcEncPort();            }        }        catch (javax.xml.rpc.ServiceException jre) {            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);        }        assertNotNull("binding is null", binding);        String str = "Hello there!";        String [] strArray = new String [] { "1", "two", "trois" };        assertEquals("echoString results differ", binding.echoString(str), str);        String [] resArray = binding.echoStringArray(strArray);        assertEquals("String array lengths differ",                     strArray.length,                     resArray.length);        for (int i = 0; i < strArray.length; i++) {            assertEquals("Array members at index " + i + " differ",                         strArray[i],                         resArray[i]);        }        SOAPStruct struct = new SOAPStruct();        struct.setVarFloat(3.14159F);        struct.setVarInt(69);        struct.setVarString("Struct-o-rama");        assertTrue("Structs weren't equal",                   struct.equals(binding.echoStruct(struct)));    }    public static void main(String[] args) {        if (args.length == 1) {            try {                url = new URL(args[0]);            } catch (Exception e) {            }        }        junit.textui.TestRunner.run(new junit.framework.TestSuite(RpcEncTestCase.class));    } // main}

⌨️ 快捷键说明

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