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

📄 helloworld.wsdl

📁 一个web service的开发工具
💻 WSDL
字号:
<?xml version="1.0" encoding="UTF-8"?><definitions name="HelloWorld"targetNamespace="http://hello.jaxrpc.samples/"xmlns:tns="http://hello.jaxrpc.samples/"xmlns="http://schemas.xmlsoap.org/wsdl/"xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">  <types />  <message name="sayHello">    <part name="String_1" type="xsd:string" />  </message>  <message name="sayHelloResponse">    <part name="result" type="xsd:string" />  </message>  <portType name="Hello">    <operation name="sayHello" parameterOrder="String_1">      <input message="tns:sayHello" />      <output message="tns:sayHelloResponse" />    </operation>  </portType>  <binding name="HelloBinding" type="tns:Hello">    <operation name="sayHello">      <input>        <soap:body        encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"        use="encoded" namespace="http://hello.jaxrpc.samples/" />      </input>      <output>        <soap:body        encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"        use="encoded" namespace="http://hello.jaxrpc.samples/" />      </output>      <soap:operation soapAction="" />    </operation>    <soap:binding transport="http://schemas.xmlsoap.org/soap/http"    style="rpc" />  </binding>  <service name="HelloWorld">    <port name="HelloPort" binding="tns:HelloBinding">      <soap:address      location="http://localhost:8080/axis/Hello" />    </port>  </service></definitions>

⌨️ 快捷键说明

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