Insert excerpt |
---|
| ESB Profile Samples |
---|
| ESB Profile Samples |
---|
nopanel | true |
---|
|
Objective: Introduction to ESB Proxy Services.
Code Block |
---|
language | html/xml |
---|
linenumbers | true |
---|
|
<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:samples/service-bus/resources/proxy/sample_proxy_1.wsdl"/>
</proxy>
</definitions>
|
Prerequisites
- Start the Synapse configuration numbered 150: i.e.
wso2ei-samples.sh -sn 150
Start the Axis2 server and deploy the SimpleStockQuoteService
if not already done.
...