blob: 1a081c6fbd5c8f0c496cc663fb791fc3014b151a [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<!-- Introduction to Synapse Message Sampling Processor -->
<definitions xmlns="http://ws.apache.org/ns/synapse">
<proxy name="StockQuoteProxy">
<target>
<inSequence>
<!--use sequence template to trasnform incoming request-->
<call-template target="xslt_func">
<with-param name="xslt_key" value="xslt-key-req"/>
</call-template>
<send>
<endpoint>
<address uri="http://localhost:9000/services/SimpleStockQuoteService"/>
</endpoint>
</send>
</inSequence>
<outSequence>
<!--use sequence template to trasnform incoming response-->
<call-template target="xslt_func">
<with-param name="xslt_key" value="xslt-key-back"/>
</call-template>
<send/>
</outSequence>
</target>
</proxy>
<!--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-->
<template xmlns="http://ws.apache.org/ns/synapse" name="xslt_func">
<parameter name="xslt_key"/>
<sequence>
<log level="full">
<property name="BEFORE_TRANSFORM" value="true" />
</log>
<xslt key="{$func:xslt_key}"/>
<log level="full">
<property name="AFTER_TRANSFORM" value="true" />
</log>
</sequence>
</template>
<localEntry key="xslt-key-req" src="file:repository/conf/sample/resources/transform/transform.xslt"/>
<localEntry key="xslt-key-back" src="file:repository/conf/sample/resources/transform/transform_back.xslt"/>
</definitions>