Please visit our sponsors !
WSDL Bindings
WSDL bindings defines the message format and protocol details
for a web service.
Binding to SOAP
A request-response operation example:
<message name="getTermRequest">
<part name="term" type="xs:string"/>
</message>
<message name="getTermResponse">
<part name="value" type="xs:string"/>
</message>
<portType name="glossaryTerms"> <operation name="getTerm"> <input message="getTermRequest"/> <output message="getTermResponse"/> </operation> </portType>
<binding type="glossaryTerms" name="b1">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<operation>
<soap:operation
soapAction="http://example.com/getTerm"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
|
The binding element has two attributes - the name attribute and
the type attribute.
The name attribute (you can use any name you want) defines the name of the
binding, and the type attribute points to the port for the binding, in this case
the "glossaryTerms" port.
The soap:binding element has two attributes - the style attribute and
the transport attribute.
The style attribute can be "rpc" or "document". In this case we use document.
The
transport attribute defines the SOAP protocol to use. In this case we use
HTTP.
The operation element defines each operation that the port
exposes.
For each operation the corresponding SOAP action has to be defined. You must
also specify how the input and output are encoded. In this case we use "literal".
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|