All docs
This doc
...
Deploy the following proxy service using instructions in Adding a Proxy Service.
Note the property, <property xmlns:m0=" http://services.samples " name="stock prop" expression="$body//m0:getQuote"/>
in the configuration. It is used to log the first <m0:getQuote>
element of the request SOAP body.
Code Block | ||
---|---|---|
| ||
<proxy xmlns="http://ws.apache.org/ns/synapse" name="StockQuoteProxy" transports="https,http" statistics="disable" trace="disable" startOnLoad="true">
<target>
<inSequence>
<log>
<property xmlns:m0="http://services.samples" name="stockprop" expression="$body//m0:getQuote"/>
</log>
<send>
<endpoint>
<address uri="http://localhost:9000/services/SimpleStockQuoteService"/>
</endpoint>
</send>
</inSequence>
<outSequence>
<send/>
</outSequence>
</target>
<description></description>
</proxy> |
Send the following StockQuote request using the sample StockQuote client. For information on working with the sample client, see Using the Sample Clients.
Code Block | ||
---|---|---|
| ||
ant stockquote -Daddurl=http://localhost:8280/services/StockQuoteProxy |
Note the following message in the log.
Code Block |
---|
[2013-03-18 14:04:41,019] INFO - LogMediator To: /services/StockQuoteProxy, WSAction: urn:getQuote, SOAPAction: urn:getQuote, ReplyTo: http://www.w3.org/2005/08/addressing/anonymous, MessageID: urn:uuid:930f68f5-199a-4eff-90d2-ea679c2362ab, Direction: request, stockprop = <m0:getQuotexmlns:m0="http://services.samples"><m0:request><m0:symbol>IBM</m0:symbol></m0:request></m0:getQuote> |
...