WSDL - przykład

Poniżej podano plik WSDL, który ma na celu zademonstrowanie prostego programu WSDL.

Załóżmy, że usługa zapewnia jedną publicznie dostępną funkcję o nazwie sayHello . Ta funkcja oczekuje pojedynczego parametru ciągu znaków i zwraca powitanie w postaci pojedynczego ciągu. Na przykład, jeśli przekażesz parametr world , funkcja serwisowa sayHello zwróci powitanie, „Hello, world!”.

Przykład

Zawartość pliku 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>

Przykładowa analiza

  • Definitions - HelloService

  • Type - Korzystanie z wbudowanych typów danych, które są zdefiniowane w XMLSchema.

  • Message -

    • sayHelloRequest - parametr firstName

    • sayHelloresponse - wartość zwracana powitania

  • Port Type - operacja sayHello składająca się z żądania i usługi odpowiedzi.

  • Binding - Kierunek użycia protokołu transportowego SOAP HTTP.

  • Service - Usługa dostępna pod adresem http://www.examples.com/SayHello/

  • Port - Kojarzy powiązanie z adresem URI http://www.examples.com/SayHello/, gdzie można uzyskać dostęp do uruchomionej usługi.