WSDL實例

下面給出了一個WSDL文件,用於演示簡單的WSDL程序。

假設這個服務提供了一個名稱爲sayHello的公共可用函數。 此函數需要單個字符串參數並返回單個字符串問候語。 例如,如果傳遞參數值爲:"world",那麼服務函數sayHello將返回問候語:"Hello,world!"

示例

HelloService.wsdl 文件的內容如下所示 -

<definitions name = "HelloService"
   targetNamespace = "http://www.examples.com/wsdl/HelloService.wsdl"
   xmlns = "http://schemas.xmlsoap.org/wsdl/"
   xmlns:soap = "http://schemas.xmlsoap.org/wsdl/soap/"
   xmlns:tns = "http://www.examples.com/wsdl/HelloService.wsdl"
   xmlns:xsd = "http://www.w3.org/2001/XMLSchema">

   <message name = "SayHelloRequest">
      <part name = "firstName" type = "xsd:string"/>
   </message>

   <message name = "SayHelloResponse">
      <part name = "greeting" type = "xsd:string"/>
   </message>

   <portType name = "Hello_PortType">
      <operation name = "sayHello">
         <input message = "tns:SayHelloRequest"/>
         <output message = "tns:SayHelloResponse"/>
      </operation>
   </portType>

   <binding name = "Hello_Binding" type = "tns:Hello_PortType">
      <soap:binding style = "rpc"
         transport = "http://schemas.xmlsoap.org/soap/http"/>
      <operation name = "sayHello">
         <soap:operation soapAction = "sayHello"/>
         <input>
            <soap:body
               encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/"
               namespace = "urn:examples:helloservice"
               use = "encoded"/>
         </input>

         <output>
            <soap:body
               encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/"
               namespace = "urn:examples:helloservice"
               use = "encoded"/>
         </output>
      </operation>
   </binding>

   <service name = "Hello_Service">
      <documentation>WSDL File for HelloService</documentation>
      <port binding = "tns:Hello_Binding" name = "Hello_Port">
         <soap:address
            location = "http://www.examples.com/SayHello/" />
      </port>
   </service>
</definitions>

示例分析說明

  • 定義 - HelloService
  • 類型 - 使用內置數據類型,它們在XMLSchema中定義。
  • 消息 -
    • sayHelloRequest - firstName參數
    • sayHelloresponse - 問候的返回值
  • 端口類型 - 由請求和響應服務組成的sayHello操作。
  • 綁定 - 使用SOAP HTTP傳輸協議的方向。
  • 服務 - 可從 http://www.examples.com/SayHello/ 獲取服務
  • 端口 - 將綁定與URI => http://www.examples.com/SayHello/ 相關聯,可以訪問正在運行的服務。