blob: f6cf74e4aeaa837633d975bcd082713b366e980a [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 704</title>
</properties>
<body>
<section name="Sample 704: Invoke Secured Services with Scheduled Message Forwarding Processor">
<div class="xmlConf">&lt;!-- Invoke Secured Services with Scheduled Message Forwarding Processor --&gt;
&lt;definitions xmlns="http://ws.apache.org/ns/synapse"&gt;
&lt;localEntry key="sec_policy" src="file:repository/conf/sample/resources/policy/policy_3.xml"/&gt;
&lt;endpoint name="SecuredStockQuoteServiceEp"&gt;
&lt;address uri="http://localhost:9000/services/SecureStockQuoteService"&gt;
&lt;suspendOnFailure&gt;
&lt;errorCodes&gt;-1&lt;/errorCodes&gt;
&lt;progressionFactor&gt;1.0&lt;/progressionFactor&gt;
&lt;/suspendOnFailure&gt;
&lt;enableSec policy="sec_policy"/&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="SecuredStockQuoteServiceEp"/&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>
Invoke Secured Services with Scheduled Message Forwarding Processor
</p>
</subsection>
<subsection name="Pre-requisites">
<p>
<ul>
<li>
Download and install the Java Cryptography Extension (JCE) unlimited
strength policy files for your JDK
</li>
<li>
Start Synapse using the configuration numbered 704 (repository/conf/sample/synapse_sample_704.xml)
<div class="command">
Unix/Linux: sh synapse.sh -sample 704<br/>
Windows: synapse.bat -sample 704
</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:8280/ -Dmode=placeorder
</div>
<p>
Deploy the SecureStockQuoteService 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 secured backend service using the defined endpoint.
Endpoint is configured to use WS-Security.
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>