All docs
This doc
Note that WSO2 EI is shipped with the following changes to what is mentioned in this documentation:
<PRODUCT_HOME>/
repository/samples/
directory that includes all Integration profile samples is changed to <EI_HOME>/
samples/service-bus/
.
<PRODUCT_HOME>/
repository/samples/resources/
directory that includes all artifacts related to the Integration profile samples is changed to <EI_HOME>/
samples/service-bus/resources/
.Objective: Demonstrate the basic functions of the URL Rewrite Mediator.
<definitions xmlns="http://ws.apache.org/ns/synapse"> <sequence name="main"> <in> <rewrite> <rewriterule> <action type="replace" regex="soap" value="services" fragment="path"/> </rewriterule> </rewrite> <send/> </in> <out> <send/> </out> </sequence> </definitions>
Prerequisites:
Invoke the client as follows.
ant stockquote -Dtrpurl=http://localhost:8280 -Daddurl=http://localhost:9000/soap/SimpleStockQuoteService
Note that the address URL of the client request contains the context 'soap'. But in the Axis2 server all the services are deployed under a context named 'services' by default. ESB will rewrite the To header of the request by replacing the 'soap' context with 'services. Hence the request will be delivered to the Axis2 server and the Axis2 client will receive a valid response.