blob: c37c408f367bbcf366f6d3b6cd51638dca4c7f01 [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 702</title>
</properties>
<body>
<section name="Sample 702: Introduction to Message Forwarding Processor">
<div class="xmlConf">&lt;!-- Introduction to Scheduled Message Forwarding Processor --&gt;
&lt;definitions xmlns="http://ws.apache.org/ns/synapse"&gt;
&lt;endpoint name="StockQuoteServiceEp"&gt;
&lt;address uri="http://localhost:9000/services/SimpleStockQuoteService"&gt;
&lt;suspendOnFailure&gt;
&lt;errorCodes&gt;-1&lt;/errorCodes&gt;
&lt;progressionFactor&gt;1.0&lt;/progressionFactor&gt;
&lt;/suspendOnFailure&gt;
&lt;/address&gt;
&lt;/endpoint&gt;
&lt;sequence name="fault"&gt;
&lt;log level="full"&gt;
&lt;property name="MESSAGE" value="Executing default 'fault' sequence"/&gt;
&lt;property name="ERROR_CODE" expression="get-property('ERROR_CODE')"/&gt;
&lt;property name="ERROR_MESSAGE" expression="get-property('ERROR_MESSAGE')"/&gt;
&lt;/log&gt;
&lt;drop/&gt;
&lt;/sequence&gt;
&lt;sequence name="main"&gt;
&lt;in&gt;
&lt;log level="full"/&gt;
&lt;property name="FORCE_SC_ACCEPTED" value="true" scope="axis2"/&gt;
&lt;property name="OUT_ONLY" value="true"/&gt;
&lt;property name="target.endpoint" value="StockQuoteServiceEp"/&gt;
&lt;store messageStore="MyStore"/&gt;
&lt;/in&gt;
&lt;description&gt;The main sequence for the message mediation&lt;/description&gt;
&lt;/sequence&gt;
&lt;messageStore name="MyStore"/&gt;
&lt;messageProcessor
class="org.apache.synapse.message.processors.forward.ScheduledMessageForwardingProcessor"
name="ScheduledProcessor" messageStore="MyStore"&gt;
&lt;parameter name="interval"&gt;10000&lt;/parameter&gt;
&lt;/messageProcessor&gt;
&lt;/definitions&gt;
</div>
<subsection name="Objective">
<p>
Introduction to Message Forwarding Processor
</p>
</subsection>
<subsection name="Pre-requisites">
<p>
<ul>
<li>
Start Synapse using the configuration numbered 702 (repository/conf/sample/synapse_sample_702.xml)
<div class="command">
Unix/Linux: sh synapse.sh -sample 702<br/>
Windows: synapse.bat -sample 702
</div>
</li>
</ul>
</p>
</subsection>
<subsection name="Executing the Client">
<p>
Execute the sample client a few times with the following command. Note that
we still haven't started the sample Axis2 server.
</p>
<div class="command">
ant stockquote -Daddurl=http://localhost:9000/services/SimpleStockQuoteService -Dtrpurl=http://localhost:8280/ -Dmode=placeorder
</div>
<p>
Deploy the SimpleStockQuoteService in the sample Axis2 server and start Axis2.
</p>
<p>
When you start the service you will see messages getting delivered to the service,
even though the service was actually down when we invoked the sample client.
</p>
<p>
Here in the 'main' sequence store mediator will store the placeOrder request
message in the 'MyStore' message store. Message processor will send the message
to the endpoint which is configured as a message context property. Message
processor will remove the message from the store only if the message is delivered
successfully.
</p>
</subsection>
</section>
<p>
<a href="../samples.html">Back to Catalog</a>
</p>
</body>
</document>