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

📄 jaxrpchandler.wsdl

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 WSDL
字号:
<?xml version="1.0" encoding="UTF-8"?><wsdl:definitions targetNamespace="urn:jaxrpchandler.wsdl.test" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="urn:jaxrpchandler.wsdl.test" xmlns:intf="urn:jaxrpchandler.wsdl.test" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">  <wsdl:message name="getQuoteRequest">    <wsdl:part name="symbol" type="xsd:string"/>  </wsdl:message>  <wsdl:message name="getQuoteResponse">    <wsdl:part name="getQuoteReturn" type="xsd:float"/>  </wsdl:message>  <wsdl:portType name="StockQuote">    <wsdl:operation name="getQuote" parameterOrder="symbol">      <wsdl:input message="intf:getQuoteRequest" name="getQuoteRequest"/>      <wsdl:output message="intf:getQuoteResponse" name="getQuoteResponse"/>    </wsdl:operation>  </wsdl:portType>  <wsdl:binding name="GetQuoteSoapBinding" type="intf:StockQuote">    <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>    <wsdl:operation name="getQuote">      <wsdlsoap:operation soapAction=""/>      <wsdl:input name="getQuoteRequest">        <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="jaxrpchandler" use="encoded"/>      </wsdl:input>      <wsdl:output name="getQuoteResponse">        <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="jaxrpchandler" use="encoded"/>      </wsdl:output>    </wsdl:operation>  </wsdl:binding>  <wsdl:service name="StockQuoteService">    <wsdl:port binding="intf:GetQuoteSoapBinding" name="jaxrpchandler">      <wsdlsoap:address location="http://localhost:8080/axis/services/jaxrpchandler"/>    </wsdl:port>  </wsdl:service></wsdl:definitions>

⌨️ 快捷键说明

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