marshall3testport1soapbindingimpl.java

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

JAVA
39
字号
/** * Marshall3TestPort1SoapBindingImpl.java * * This file was auto-generated from WSDL * by the Apache Axis 1.2RC3 Apr 29, 2005 (10:05:23 EDT) WSDL2Java emitter. */package test.wsdl.marshall3;import java.rmi.RemoteException;import test.wsdl.marshall3.types.QNameArrayTest;import test.wsdl.marshall3.types.QNameArrayTestResponse;import test.wsdl.marshall3.types.ShortArrayTest;import test.wsdl.marshall3.types.ShortArrayTestResponse;import test.wsdl.marshall3.types.StringArrayTest;import test.wsdl.marshall3.types.StringArrayTestResponse;public class Marshall3TestPort1SoapBindingImpl implements test.wsdl.marshall3.MarshallTest{    public ShortArrayTestResponse shortArrayTest(ShortArrayTest parameters) throws java.rmi.RemoteException {        return new ShortArrayTestResponse(parameters.getShortArray());    }    public StringArrayTestResponse stringArrayTest(StringArrayTest parameters) throws java.rmi.RemoteException {        return new StringArrayTestResponse(parameters.getStringArray());    }    public QNameArrayTestResponse qnameArrayTest(QNameArrayTest parameters) throws java.rmi.RemoteException {        if (parameters.getQnameArray().length != 3) {            throw new java.rmi.RemoteException("Array size mismatch");        }        return new QNameArrayTestResponse(parameters.getQnameArray());    }    public short[] echoShortListTypeTest(short[] fooShortListTypeRequest) throws java.rmi.RemoteException {        return fooShortListTypeRequest;    }}

⌨️ 快捷键说明

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