Java Reference
In-Depth Information
<message name="translateResponse">
<part name="return" type="xsd:string" />
</message>
<portType name="PigLatinTranslatorPortType">
<operation name="translate">
<input message="tns:translateRequest"/>
<output message="tns:translateResponse"/>
</operation>
</portType>
<binding name="PigLatinTranslatorBinding"
type="tns:PigLatinTranslatorPortType">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="translate">
<soap:operation
soapAction=
"http://www.httprecipes.com/1/11/soap/index.php/translate"
style="rpc"/>
<input>
<soap:body use="encoded"
namespace="http://www.httprecipes.com/1/11/soap/"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded"
namespace="http://www.httprecipes.com/1/11/soap/"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="PigLatinTranslator">
<port name="PigLatinTranslatorPort"
binding="tns:PigLatinTranslatorBinding">
<soap:address
location="http://www.httprecipes.com/1/11/soap/index.php"/>
</port>
</service>
</definitions>
It is not important to understand the exact format of WSDL unless you are going to
implement a SOAP framework. Later in this chapter you will see how to use the AXIS frame-
work to generate Java class files from the above WSDL.
Search WWH ::




Custom Search