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

📄 esr.wsdl

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 WSDL
字号:
<?xml version="1.0" ?><definitions     name="esr types test"    targetNamespace="urn:esr.wsdl.test"    xmlns:tns="urn:esr.wsdl.test"    xmlns:typens="urn:comprehensive-types.types.wsdl.test"    xmlns:typens2="urn:comprehensive-types2.types.wsdl.test"    xmlns:xsd="http://www.w3.org/2001/XMLSchema"    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"    xmlns="http://schemas.xmlsoap.org/wsdl/">  <!-- message declns -->  <message name='EsrTest.esrRequest'>    <part name='value' type='xsd:short'/>  </message>  <message name='EsrTest.esrResponse'>    <part name='echoVal' type='xsd:short'/>    <part name='sqrtVal' type='xsd:double'/>  </message>  <message name='EsrTest.esrRequest2'>     <part name='bstrSAH' type='xsd:string'/>    <part name='bstrSUH' type='xsd:string'/>    <part name='value' type='xsd:short'/>  </message>  <message name='EsrTest.esrResponse2'>    <part name='echoVal' type='xsd:short'/>    <part name='sqrtVal' type='xsd:double'/>  </message>  <!-- port type declns -->  <portType name='EsrTest'>    <operation name='esrInOut' parameterOrder='value echoVal sqrtVal'>      <input message='tns:EsrTest.esrRequest' />      <output message='tns:EsrTest.esrResponse' />    </operation>    <operation name='esrInOut2' parameterOrder='bstrSAH bstrSUH value echoVal sqrtVal'>      <input message='tns:EsrTest.esrRequest2' />      <output message='tns:EsrTest.esrResponse2' />    </operation>  </portType>  <!-- binding declns -->  <binding name="EsrTestBinding" type="tns:EsrTest">    <soap:binding        style="rpc"        transport="http://schemas.xmlsoap.org/soap/http"/>    <operation name="esrInOut">      <soap:operation soapAction=""/>      <input>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </input>      <output>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </output>    </operation>    <operation name="esrInOut2">      <soap:operation soapAction=""/>      <input>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </input>      <output>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </output>    </operation>  </binding>  <!-- service decln -->  <service name="EsrTestService">    <port name="EsrTest" binding="tns:EsrTestBinding">      <soap:address location="http://localhost:8080/axis/services/EsrTest"/>    </port>  </service></definitions>

⌨️ 快捷键说明

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