blob: 30f08095ae80727a834419331c88d7871316dfd2 [file]
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<document>
<properties>
<title>Apache Synapse - Sample 750</title>
</properties>
<body>
<section name="Sample 750: Stereotyping XSLT Transformations with Templates">
<div class="xmlConf">&lt;definitions xmlns=&quot;http://ws.apache.org/ns/synapse&quot;&gt;
&lt;proxy name=&quot;StockQuoteProxy&quot;&gt;
&lt;target&gt;
&lt;inSequence&gt;
&lt;!--use sequence template to trasnform incoming request--&gt;
&lt;call-template target=&quot;xslt_func&quot;&gt;
&lt;with-param name=&quot;xslt_key&quot; value=&quot;xslt-key-req&quot;/&gt;
&lt;/call-template&gt;
&lt;send&gt;
&lt;endpoint&gt;
&lt;address uri=&quot;http://localhost:9000/services/SimpleStockQuoteService&quot;/&gt;
&lt;/endpoint&gt;
&lt;/send&gt;
&lt;/inSequence&gt;
&lt;outSequence&gt;
&lt;!--use sequence template to trasnform incoming response--&gt;
&lt;call-template target=&quot;xslt_func&quot;&gt;
&lt;with-param name=&quot;xslt_key&quot; value=&quot;xslt-key-back&quot;/&gt;
&lt;/call-template&gt;
&lt;send/&gt;
&lt;/outSequence&gt;
&lt;/target&gt;
&lt;/proxy&gt;
&lt;!--this sequence template will trasnform requests with the given xslt local entry key And will log
the message before and after. Takes Iterate local entry key as an argument--&gt;
&lt;template xmlns=&quot;http://ws.apache.org/ns/synapse&quot; name=&quot;xslt_func&quot;&gt;
&lt;parameter name=&quot;xslt_key&quot;/&gt;
&lt;sequence&gt;
&lt;log level=&quot;full&quot;&gt;
&lt;property name=&quot;BEFORE_TRANSFORM&quot; value=&quot;true&quot; /&gt;
&lt;/log&gt;
&lt;xslt key=&quot;{$func:xslt_key}&quot;/&gt;
&lt;log level=&quot;full&quot;&gt;
&lt;property name=&quot;AFTER_TRANSFORM&quot; value=&quot;true&quot; /&gt;
&lt;/log&gt;
&lt;/sequence&gt;
&lt;/template&gt;
&lt;localEntry key=&quot;xslt-key-req&quot; src=&quot;file:repository/samples/resources/transform/transform.xslt&quot;/&gt;
&lt;localEntry key=&quot;xslt-key-back&quot; src=&quot;file:repository/samples/resources/transform/transform_back.xslt&quot;/&gt;
&lt;/definitions&gt;</div>
<subsection name="Objective">
<p>
Introduction to Apache Synapse Sequence Templates
</p>
</subsection>
<subsection name="Pre-requisites">
<p>
<ul>
<li>
Deploy the SimpleStockQuoteService in the sample Axis2 server and start Axis2
</li>
<li>
Start Synapse using the configuration numbered 750 (repository/conf/sample/synapse_sample_750.xml)
<div class="command">
Unix/Linux: sh synapse.sh -sample 750<br/>
Windows: synapse.bat -sample 750
</div>
</li>
</ul>
</p>
</subsection>
<subsection name="Executing the Client">
<p>
First execute the sample client as follows.
</p>
<div class="command">ant stockquote -Daddurl=http://localhost:8280/services/StockQuoteProxy -Dmode=customquote</div>
<p>
Sequence Template can act a reusable function. Here the proxy service reuses
template xslt_func which will transform requests with the given xslt local entry
key And will log the message before and after. It takes xslt transformation corresponding
to local entry key as an argument (for insequence this key is xslt-key-req and out sequence it is xslt-key-back).
We use call-template mediator for passing the xslt key parameter to a sequence template.
</p>
</subsection>
</section>
<p><a href="../samples.html">Back to Catalog</a></p>
</body>
</document>