Hi all,
I want to use
Java Transaction service for distributed transaction management in my Java application.
I have 3 different databases to which I have to connect using 3 different Connection objects. I want to insert certain data in each of the 3 databases.
My requirement is that atomicity should be maintained. So either data should get inserted in all 3 databases or it should not get inserted in any of the databases.
I searched on net for this kind of transactions and I got
http://java.sun.com/javaee/technologies/jts/index.jsp .
I could find its API here
http://java.sun.com/products/jts/javadoc/index.html
But I am still not getting how implement transactions using it. Can somebody provide me with links to sample code or tutorials of Java Transaction Service.
Thanks in Advance,
Aniket Kedari