First page Back Continue Last page Graphics
A Simple WSDL Example
Here’s a simple WSDL example:
- A stock information service with one operation: GetLastTradePrice
The WSDL document defines:
- Data types for request & reply: TradePriceRequest & TradePrice
- Messages for the operation’s input and output: GetLastTradePriceInput & GetLastTradePriceOutput
- A port type (endpoint) StockQuotePort supporting the operation.
- A binding that assigns a SOAP message format to the operation for this endpoint.
- A service with a specific location using this binding.
- See notes for XML...
Notes:
This example is taken from the WSDL spec document.