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

📄 inheritancetest.wsdl

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 WSDL
字号:
<?xml version="1.0" ?><!-- This WSDL contains the WSDL for testing inherited service definition interfaces --><definitions name="urn:InheritanceTest"             targetNamespace="urn:InheritanceTest2"             xmlns:tns="urn:InheritanceTest2"             xmlns:typens="urn:InheritanceTest2"             xmlns:xsd="http://www.w3.org/1999/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="getRealtimeLastTradePriceResponse">     <part name="price" type="xsd:float"/>  </message>  <message name="getRealtimeLastTradePriceRequest">     <part name="tickerSymbol" type="xsd:string"/>  </message>  <message name="getLastTradePriceRequest">     <part name="tickerSymbol" type="xsd:string"/>  </message>  <message name="getLastTradePriceResponse">     <part name="price" type="xsd:float"/>  </message>  <!-- port type declns -->  <portType name="InheritancePortType">    <operation name="getLastTradePrice">               parameterOrder="tickerSymbol">      <input message="tns:getLastTradePriceRequest"/>      <output message="tns:getLastTradePriceResponse"/>    </operation>    <operation name="getRealtimeLastTradePrice">      <input message="tns:getRealtimeLastTradePriceRequest"/>      <output message="tns:getRealtimeLastTradePriceResponse"/>    </operation>  </portType>  <!-- binding declns -->  <binding name="InheritanceSoapBinding" type="tns:InheritancePortType">    <soap:binding style="rpc"                  transport="http://schemas.xmlsoap.org/soap/http"/>    <operation name="getLastTradePrice">      <soap:operation soapAction=""/>      <input>        <soap:body use="encoded"                   namespace="urn:InheritanceTest"                   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </input>      <output>        <soap:body use="encoded"                   namespace="urn:InheritanceTest"                   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </output>    </operation>    <operation name="getRealtimeLastTradePrice">      <soap:operation soapAction=""/>      <input>        <soap:body use="encoded"                   namespace="urn:InheritanceTest"                   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </input>      <output>        <soap:body use="encoded"                   namespace="urn:InheritanceTest"                   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </output>    </operation>  </binding>  <!-- service decln -->  <service name="InheritanceTest">    <port name="InheritanceTest" binding="tns:InheritanceSoapBinding">      <soap:address location="http://localhost:8080/axis/services/InheritanceTest"/>    </port>  </service></definitions>

⌨️ 快捷键说明

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