Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
./axis2server.sh

 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.

...