blob: 2009094cdd3b9fe7c05f857ea48ff4b19bcd8824 [file] [log] [blame]
<?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 502</title>
</properties>
<body>
<section name="Sample 502: Transforming Events Before Publish">
<div class="xmlConf">&lt;definitions xmlns="http://ws.apache.org/ns/synapse"&gt;
&lt;eventSource name="SampleEventSource"&gt;
&lt;subscriptionManager
class="org.apache.synapse.eventing.managers.DefaultInMemorySubscriptionManager"&gt;
&lt;!--property name="registryURL" value="http://localhost:8180/wso2registry"/&gt;
&lt;property name="username" value="admin"/&gt;
&lt;property name="password" value="admin"/--&gt;
&lt;property name="topicHeaderName" value="Topic"/&gt;
&lt;property name="topicHeaderNS" value="http://apache.org/aip"/&gt;
&lt;/subscriptionManager&gt;
&lt;subscription id="mysub1"&gt;
&lt;filter source="synapse/event/test"
dialect="http://synapse.apache.org/eventing/dialect/topicFilter"/&gt;
&lt;endpoint&gt;
&lt;address uri="http://localhost:9000/services/SimpleStockQuoteService"/&gt;
&lt;/endpoint&gt;
&lt;/subscription&gt;
&lt;/eventSource&gt;
&lt;sequence name="PublicEventSource"&gt;
&lt;log level="full"/&gt;
&lt;xslt key="xslt-key-req"/&gt;
&lt;log level="full"/&gt;
&lt;eventPublisher eventSourceName="SampleEventSource"/&gt;
&lt;/sequence&gt;
&lt;proxy name="EventingProxy"&gt;
&lt;target inSequence="PublicEventSource"/&gt;
&lt;/proxy&gt;
&lt;localEntry key="xslt-key-req"
src="file:repository/conf/sample/resources/transform/transform_eventing.xslt"/&gt;
&lt;/definitions&gt;</div>
<subsection name="Objective">
<p>
Demonstrate how to mediate and transform events before they are sent to the
target event sinks
</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 502 (repository/conf/sample/synapse_sample_502.xml)
<div class="command">
Unix/Linux: sh synapse.sh -sample 502<br/>
Windows: synapse.bat -sample 502
</div>
</li>
</ul>
</p>
</subsection>
<subsection name="Executing the Client">
<p>
In this sample, the event (order request) is transformed into a new order with
a different namesapce using the XSLT mediator. Invoke the client as follows.
</p>
<div class="command">ant eventsender</div>
<p>
Event will be mediated through the 'PublicEventSource' sequence and get transformed
before it gets published to the event sink (Axis2 server).
</p>
</subsection>
</section>
<p><a href="../samples.html">Back to Catalog</a></p>
</body>
</document>