Information Technology Reference
In-Depth Information
[Data that is sent]
<part name = "body" type = "xsd:string"/>
</message>
<message name = "LastTradePrice">
[Data that is returned]
<part name = "body" type = "xsd:float"/>
</message>
<portType name = "StockQuotePortType">
[Port type containing one operation]
<operation name = "GetLastTradePrice">
[An operation with Input and Output messages]
<input message =
"tns:GetLastTradePrice"/>
<output message =
"tns:LastTradePrice"/>
</operation>
</portType>
<binding name = "StockQuoteBinding"
type = "tns:StockQuotePortType">
<soap:binding style = "document"
transport = "http://schemas.xmlsoap.org/
soap/http"/>
<operation name = "GetLastTradePrice">
<soap:operation soapAction =
"h ttp://myCompany.com/
GetLastTradePrice"/>
<input>
<soap:body use = "literal"/>
</input>
<output>
<soap:body use = "literal"/>
</output>
</operation>
[Binding to a specific protocol]
</binding>
<service name = "StockQuoteService">
<documentation>Stock quote service</
documentation>
[Binding to a specific service]
<port name = "StockQuotePort"
binding = "tns:StockQuoteBinding">
<soap:address location =
"h ttp://myCompany.com/
stockServices"/>
</port>
</service>
</definitions>
Search WWH ::




Custom Search