WSDL - Esempio
Di seguito è riportato un file WSDL fornito per dimostrare un semplice programma WSDL.
Supponiamo che il servizio fornisca una singola funzione disponibile pubblicamente, chiamata sayHello . Questa funzione prevede un singolo parametro di stringa e restituisce un singolo saluto di stringa. Ad esempio, se si passa il parametro world , la funzione di servizio sayHello restituisce il saluto "Hello, world!".
Esempio
Contenuto del file 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>
Analisi di esempio
Definitions - HelloService
Type - Utilizzo di tipi di dati incorporati e sono definiti in XMLSchema.
Message -
sayHelloRequest - parametro firstName
sayHelloresponse - valore di ritorno del saluto
Port Type - operazione sayHello che consiste in una richiesta e un servizio di risposta.
Binding - Direzione per utilizzare il protocollo di trasporto HTTP SOAP.
Service - Servizio disponibile su http://www.examples.com/SayHello/
Port - Associa l'associazione all'URI http://www.examples.com/SayHello/ da cui è possibile accedere al servizio in esecuzione.