Sample 16: Introduction to dynamic and static registry keys

<definitions xmlns="http://ws.apache.org/ns/synapse"> <!-- the SimpleURLRegistry allows access to a URL based registry (e.g. file:/// or http://) --> <registry provider="org.wso2.carbon.mediation.registry.ESBRegistry"> <!-- the root property of the simple URL registry helps resolve a resource URL as root + key --> <parameter name="root">file:repository/samples/resources/</parameter> <!-- all resources loaded from the URL registry would be cached for this number of milli seconds --> <parameter name="cachableDuration">15000</parameter> </registry> <sequence name="main"> <in> <!-- define the request processing XSLT resource as a property value --> <property name="symbol" value="transform/transform.xslt"/> <!-- {} denotes that this key is a dynamic one and it is not a static key --> <!-- use Xpath expression "get-property()" to evaluate real key from property --> <xslt key="{get-property('symbol')}"/> </in> <out> <!-- transform the standard response back into the custom format the client expects --> <!-- the key is looked up in the remote registry using a static key --> <xslt key="transform/transform_back.xslt"/> </out> <send/> </sequence> </definitions>

Objective

Objective: Introduction to dynamic and static keys

Pre-requisites

  • Start the Synapse configuration numbered 16: i.e. synapse -sample 16
  • Start the Axis2 server and deploy the SimpleStockQuoteService if not already done

Executing the Client

Execute the client as follows.

ant stockquote -Dtrpurl=http://localhost:8280/services/StockQuote

This Sample demonstrates the use of dynamic keys with mediators. XSLT mediator is used as an example for that and deference between static and dynamic usage of keys are shown with that.

The first registry resource "transform/transform.xslt" is set as a property value. Inside the XSLT mediator the local property value is lookup using the Xpath expression "get-property()". Likewise any Xpath expression can be enclosed inside "{ }" to denote that it is a dynamic key. Then the mediator will evaluate the real value for that expression.

The second XSLT resource "transform/transform_back.xslt" is used simply as a static key as usual. It is not included inside "{ }" and because of the mediator directly use the static value as the key.

Execute the custom quote client as 'ant stockquote -Dmode=customquote' and analys the output which is similar to the Sample 8.

Back to Catalog