blob: 646ac39ae4cf0859dce93e4a488e4082adb66da9 [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 410</title>
</properties>
<body>
<section name="Sample 410: Distributed Transactions Management with the Transaction Mediator">
<div class="xmlConf">&lt;definitions xmlns="http://ws.apache.org/ns/synapse"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ws.apache.org/ns/synapse http://synapse.apache.org/ns/2010/04/configuration/synapse_config.xsd"&gt;
&lt;sequence name="myFaultHandler"&gt;
&lt;log level="custom"&gt;
&lt;property name="text" value="** Rollback Transaction**"/&gt;
&lt;/log&gt;
&lt;transaction action="rollback"/&gt;
&lt;send/&gt;
&lt;/sequence&gt;
&lt;sequence name="main" onError="myFaultHandler"&gt;
&lt;in&gt;
&lt;send&gt;
&lt;endpoint&gt;
&lt;address uri="http://localhost:9000/services/SimpleStockQuoteService"/&gt;
&lt;/endpoint&gt;
&lt;/send&gt;
&lt;/in&gt;
&lt;out&gt;
&lt;transaction action="new"/&gt;
&lt;log level="custom"&gt;
&lt;property name="text" value="** Reporting to the Database esbdb**"/&gt;
&lt;/log&gt;
&lt;dbreport useTransaction="true" xmlns="http://ws.apache.org/ns/synapse"&gt;
&lt;connection&gt;
&lt;pool&gt;
&lt;dsName&gt;java:jdbc/XADerbyDS&lt;/dsName&gt;
&lt;icClass&gt;org.jnp.interfaces.NamingContextFactory&lt;/icClass&gt;
&lt;url&gt;localhost:1099&lt;/url&gt;
&lt;user&gt;synapse&lt;/user&gt;
&lt;password&gt;synapse&lt;/password&gt;
&lt;/pool&gt;
&lt;/connection&gt;
&lt;statement&gt;
&lt;sql&gt;delete from company where name =?&lt;/sql&gt;
&lt;parameter expression="//m0:return/m1:symbol/child::text()"
xmlns:m0="http://services.samples"
xmlns:m1="http://services.samples/xsd"
type="VARCHAR"/&gt;
&lt;/statement&gt;
&lt;/dbreport&gt;
&lt;log level="custom"&gt;
&lt;property name="text" value="** Reporting to the Database esbdb1**"/&gt;
&lt;/log&gt;
&lt;dbreport useTransaction="true" xmlns="http://ws.apache.org/ns/synapse"&gt;
&lt;connection&gt;
&lt;pool&gt;
&lt;dsName&gt;java:jdbc/XADerbyDS1&lt;/dsName&gt;
&lt;icClass&gt;org.jnp.interfaces.NamingContextFactory&lt;/icClass&gt;
&lt;url&gt;localhost:1099&lt;/url&gt;
&lt;user&gt;synapse&lt;/user&gt;
&lt;password&gt;synapse&lt;/password&gt;
&lt;/pool&gt;
&lt;/connection&gt;
&lt;statement&gt;
&lt;sql&gt;INSERT into company values ('IBM','c4',12.0)&lt;/sql&gt;
&lt;/statement&gt;
&lt;/dbreport&gt;
&lt;transaction action="commit"/&gt;
&lt;send/&gt;
&lt;/out&gt;
&lt;/sequence&gt;
&lt;/definitions&gt;</div>
<subsection name="Objective">
<p>
Demonstrate how to manage complex distributed transactions using the transaction
mediator
</p>
</subsection>
<subsection name="Pre-requisites">
<p>
<ul>
<li>
To run this sample it is required to deploy Synpase on JBoss application
server(This is only tested with JBoss application sever). You can use the
Synapse war distribution to deploy Synapse on JBoss. Use the synpase_sample_410.xml
as the synapse confiuration file and start JBoss. Also you need to define
two XA datasources for above the two datasources defined in Synapse. You'll
need to refer JBoss documentation to see how to do this.
</li>
<li>
Setup two Derby database instances as described in the database setup guide.
These databases will be used by the XA datasources in JBoss.
</li>
<li>
Deploy the SimpleStockQuoteService in the sample Axis2 server and start Axis2
</li>
</ul>
</p>
</subsection>
<subsection name="Executing the Client">
<p>
In this sample a record is deleted from one database and it is added to the
second database. If either of the operations(deleting from the 1st database and
adding to the second database) fails the entire operation will be roll backed.
The records will be left intact.
</p>
<p>
Invoke the client as follows to try this out.
</p>
<div class="command">ant stockquote -Daddurl=http://localhost:9000/services/SimpleStockQuoteService -Dtrpurl=http://localhost:8280/ -Dsymbol=SUN</div>
<p>
You can force an error by shutting down one of the two database instances.
</p>
</subsection>
</section>
<p><a href="../samples.html">Back to Catalog</a></p>
</body>
</document>