WSDL - Exemplo

A seguir, está um arquivo WSDL fornecido para demonstrar um programa WSDL simples.

Suponhamos que o serviço forneça uma única função disponível publicamente, chamada sayHello . Esta função espera um único parâmetro de string e retorna uma única saudação de string. Por exemplo, se você passar o parâmetro mundo , a função de serviço digaHello retornará a saudação "Olá, mundo!".

Exemplo

Conteúdo do arquivo 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>

Análise de Exemplo

  • Definitions - HelloService

  • Type - Usando tipos de dados embutidos e eles são definidos em XMLSchema.

  • Message -

    • sayHelloRequest - parâmetro firstName

    • sayHelloresponse - valor de retorno de saudação

  • Port Type - operação sayHello que consiste em um serviço de solicitação e resposta.

  • Binding - Direção para usar o protocolo de transporte SOAP HTTP.

  • Service - Serviço disponível em http://www.examples.com/SayHello/

  • Port - Associa a ligação com o URI http://www.examples.com/SayHello/ onde o serviço em execução pode ser acessado.