helloworld.wsdl

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

WSDL
55
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?