...
Code Block |
---|
<definitions xmlns="http://ws.apache.org/ns/synapse"> <proxy name="StockQuoteProxy"> <target> <endpoint> <address uri="http://localhost:9000/services/SimpleStockQuoteService"/> </endpoint> <outSequence> <send/> </outSequence> </target> <publishWSDL uri="file:repository/samples/resources/proxy/sample_proxy_1.wsdl"/> </proxy> </definitions> |
Prerequisites
- Start the Synapse configuration numbered 150 (i.e.
wso2esb-samples -sn 150
). - Start the Axis2 server and deploy the
SimpleStockQuoteService
if not already done.
...