helloservice.wsdl

来自「JavaeeTutorial5的源代码。」· WSDL 代码 · 共 36 行

WSDL
36
字号
<?xml version="1.0" encoding="UTF-8"?><definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://endpoint.basicauth.helloservice/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="http://endpoint.basicauth.helloservice/" name="HelloService">  <types>    <xsd:schema>      <xsd:import namespace="http://endpoint.basicauth.helloservice/" schemaLocation="http://127.0.0.1:8080/helloservice-basicauth/HelloService/__container$publishing$subctx/WEB-INF/wsdl/HelloService_schema1.xsd" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"/>    </xsd:schema>  </types>  <message name="sayHello">    <part name="parameters" element="tns:sayHello"/>  </message>  <message name="sayHelloResponse">    <part name="parameters" element="tns:sayHelloResponse"/>  </message>  <portType name="Hello">    <operation name="sayHello">      <input message="tns:sayHello"/>      <output message="tns:sayHelloResponse"/>    </operation>  </portType>  <binding name="HelloPortBinding" type="tns:Hello">    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>    <operation name="sayHello">      <soap:operation soapAction=""/>      <input>        <soap:body use="literal"/>      </input>      <output>        <soap:body use="literal"/>      </output>    </operation>  </binding>  <service name="HelloService">    <port name="HelloPort" binding="tns:HelloPortBinding">      <soap:address location="http://127.0.0.1:8080/helloservice-basicauth/HelloService" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"/>    </port>  </service></definitions>

⌨️ 快捷键说明

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