XA allows to execute global transactions that access more than one resource. XA uses a two-phase commit to ensure that all resources either commit or rollback.

learn more… | top users | synonyms

2
votes
1answer
31 views

How to do XA transaction which includes JDBC and JMS transactions?

I need to do XA transaction in java SE with JDBC and JMS Queues. I have weblogic server to lookup for resources. kindly help with some sample code.
0
votes
0answers
29 views

Transaction mq +hibernate +oracle

we are developing an application with following characteristics: standalone java application Hibernate 4 WebSphere MQ v6.2 Oracle 11gR2 Interaction with MQ - only native mq api. We need to ...
0
votes
0answers
26 views

Transaction Control across multiple DBs using XA

can anyone point me to a complete spring example with complete configuration for 2 phase commit on two different DBs using XA (PlatformTransactionManager). Regards, Eman Azmy
0
votes
0answers
95 views

Oracle WebLogic and WebSphere MQ - transactions are rolling back

I have developed a pure and simple MDB, which listens on the queue that is being held in WMQ. Everything works smoothly. MDB is instantly picking up messages and doing the stuff like it supposed to. ...
1
vote
1answer
169 views

Distributed Transactions Java JMS

I was wondering if I can get some ideas on how to handle a design issue I'm facing. For simplicity sake, let's say I have 3 endpoints running on 3 different machines/jvms on Tomcat. The endpoints ...
0
votes
1answer
82 views

Spring 3.1 - DefaultMessageListenerContainer - How to identify errors in ErrorHandler

Info :: I have a DefaultMessageListener implementation with XA transaction. I have used a MessageListener implementation. Scenario:: My XA transaction is between a DB and a JMS Q Publish. In case of ...
1
vote
1answer
88 views

Using XA transactions with WebSphere MQ in standalone Java

For using XA transactions with WebSphere MQ in standalone Java I am doing below step and getting error as xlc not found step 1- Prepare the XA switch files For linking object files to their ...
0
votes
1answer
134 views

Setting integrated security for XA connections on JBoss

When setting the IntegratedSecurity in the XA datasource on JBoss to true, Microsoft's JDBC driver doesn't resolve the 'true' setting to boolean value but throws an error: ...
0
votes
1answer
61 views

JTA for Standalone java applicaion

I need to have transaction management in a java standalone application. In my application,i do a Database update and after that send messages to a MQ.Both the database update and MQ sending should be ...
0
votes
2answers
133 views

java.sql.SQLException: could not use local transaction commit in a global transaction

We are having two instances of oracle (two physical machines) and one schema for our application. we are using weblogic application server. application uses datasource for which XA transaction is ...
1
vote
1answer
78 views

Any tutorial, example or experience about using XA Transaction?

Any tutorial, example or experience about using XA Transaction with two resources: jms broker (HornetQ) and database (using HibernateDaoSupport)? I have two scenario (I want transaction rollback, if ...
3
votes
1answer
81 views

XA Transactions support in MySQL Cluster?

Does MySQL Cluster supports XA Transactions? I'm using the NDBCLUSTER engine. I have an app which needs to update multiple dbs for a transaction.
0
votes
2answers
142 views

how to get XADatasource using JNDI look up for Atomikos Transaction Management

I am configuring Atomikios TM API with my Spring Application to achieve global transaction. As Atomikios require XADatasource to work, so I have done JNDI look up to get the same. But, unfortunately I ...
0
votes
0answers
160 views

zeroDateTimeBehavior=convertToNull does not work using xa-datasource

I have a Java EE application written using EJB3 and Hibernate running on Jboss 4.2.3.GA and I am using XA Datasource... I keep getting: Cannot convert value '0000-00-00 00:00:00' from column 5 to ...
2
votes
1answer
65 views

Some people say you can handle any global(XA) transaction with Spring + hibernate,true or not?

Some people say you can handle any global transaction with Spring + hibernate,true or not? Other people say you also need an application server XA datasource or another XA JTA implementation like ...
2
votes
1answer
84 views

Can an Akka actor participate in an XA transaction?

Can an Akka actor participate in an XA transaction? For example, can an actor send a message to a remote actor within the same XA transaction as a database operation (assuming the JDBC driver is an ...
1
vote
0answers
41 views

Remote XA JMS Connection

Is it possible to provide and lookup connection factories that are transactional on a JBoss AS 7? The standard "RemoteConnectionFactory" doesn't seem to be transactional (XA) and I don't know how to ...
0
votes
0answers
85 views

When does aries transaction manager close jdbc connection?

I'm not completely understand how aries transaction manager works in FUSE ESB 7.1.0. I would be glad if someone can explain the following situation. I use an jdbc XADataSource ...
0
votes
0answers
295 views

Testing JTA XA distributed transaction with JPA / Hibernate / MySQL

My goal is to have a standalone solution for building JUnit tests for local and distributed transactions using JPA over Hibernate over MySQL. So far, I have been able to use an XADataSource to access ...
2
votes
1answer
180 views

Is an XA transaction really atomic?

It seems that I'm not completely understand how an XA transaction works. I thought that it is atomic: I thought that when I commit a transaction, then new messages and new data will be available in ...
0
votes
0answers
174 views

“Cannot rollback() inside an XASession” error on Fuse ESB 7.1.0

Yesterday I tried to migrate my bundles from ServiceMix 4.4.1 to Fuse ESB Enterprise 7.1.0. Bundles with local transactions work fine, but other ones with XA transaction don't work well. They write ...
1
vote
2answers
214 views

XA/JTA transaction: JMS message arrives before DB changes are visible

Context is: producer (JTA transaction PT) is both sending message to JMS queue and making DB update; consumer (JTA transaction CT) listens on same queue and reads DB when message is received; ...
0
votes
0answers
55 views

Feasibility of a distributed JTA transactions setup with request-reply over JMS in clustered JBoss environment

I am currently investigating if it is possible to incorporate 2PC XA transactions into an existing environment and at what cost. I am not asking for a detailed explanation/configuration here but for a ...
0
votes
1answer
35 views

Migrate old JDBC program to use XA

What would I need to do if I want to migrate a program that is using old JDBC interfaces to support XA? I mean detail steps I need to do in the code. The program is running on a single DB but the new ...
0
votes
0answers
72 views

XA Global Transaction with JBoss 7.x and Amazon ElastiCache

Is it possible to use two-phase commits between JBoss 7.1 and MemCache (Amazon elasticache)? We are running a custom EC2 instance and making use of Amazon ElastiCache as well. As two phase commits ...
0
votes
1answer
305 views

JBoss spamming XA Recovery warnings

I'm running a JPA/Spring application that connects to multiple XA enabled datasources on Microsoft SQL Server. Everything works just fine, with global transactions correctly starting and rolling back ...
0
votes
2answers
76 views

Distributed transaction between client -> server -> client

For a new project i'm searching for technologies that will make my life a bit easier. My new project is basically 2 clients and a server: client1 sends a message1 to server, server sends message1 to ...
2
votes
1answer
137 views

XA transactions in Spring Batch

I'm writing a number of batch jobs with Spring Batch which mostly do export/import from/to database. The Spring Batch job repository database and target database(from/to which I'm read/write data) are ...
0
votes
1answer
44 views

Transaction Control across multiple Containers

could you please point me to any sample code for transaction control across multiple containers using XA architecture, JMS and Camel.
1
vote
0answers
45 views

XA Transactions and work outside it's context

I'm getting a message through MQ to my EJB application and it's a XA Transaction. After I receive message I need to send some http requests and send back the response(This will be a RMI call).My ...
2
votes
1answer
159 views

Avoiding distributed transaction with db link

I am working at a Spring Java EE application that has to deal with two different datasources, A and B. As the application needs to update A and B in a consistent way. If one update fails, the whole ...
1
vote
0answers
59 views

JtaTransaction with Resin

I use JtaTransactionManager of Resin to manage jta transaction in Resin Server,following is spring config for transactionManager. <bean id="transactionManager" ...
0
votes
0answers
153 views

XA Transaction : 2 Databases + 1 JMS, JMS Listener is ignored on transaction commit

I have a a server that use 2 database connections on one side, with transaction synchronised with JTA over Atomikos for XA, and a remote ActiveMQ Queue. First server act as backend, and second server ...
0
votes
2answers
499 views

Deadlock in a Spring+Hibernate+DB2+JTA+XA application

Exception from application log: 12:04:18,503 INFO ExceptionResolver:30 - [ org.springframework.dao.DeadlockLoserDataAccessException ] Hibernate flushing: could not update: ...
1
vote
1answer
99 views

Two Phase Commit and merging execution and prepare phase

As far as I understand before two phase commit is even run a round trip communication to send the transactions to each site is needed. Each site excecutes their part of the transaction and when the ...
0
votes
1answer
53 views

Client ack with MDB

As far as I know there is only AUTO_ACKNOWLEDGE and DUPS_OK_ACKNOWLEDGE possible with MDB. I would like to have something like CLIENT_ACKNOWLEDGE to avoid XA transactions. Basically what I want: get ...
0
votes
1answer
129 views

XA Two Phase Commit and execution in Prepare Phase?

I am trying to understand two-phase-commit and it is not clear to me when each local site executes its portion of the distributed transaction. Does that happen before the prepare messages are sent. ...
0
votes
1answer
902 views

Granting Oracle permissions doesn't fix WebSphere XAER_RMERR exception?

I have an application deployed on WebSphere ND 7.0.0.21. Within that I have an Oracle XA datasource configured. Recently the application crashed and when I restarted it, I started getting the ...
2
votes
0answers
82 views

JTA Transaction with multiple participants

I'm having trouble finding a simple example of a JTA transaction spanning multiple resources (e.g. two databases, a database and a JMS queue, etc.) I've spent a lot of time reading up on this and ...
1
vote
0answers
147 views

Advice - XA, JTA, and JMS - Use XA to read from JMS and write to DB in transaction

At work I've been asked to read from a JMS queue (actually, something proprietary with a similar interface) and write to a database within the same transaction. For example, if the database insert ...
0
votes
1answer
298 views

PostgreSQL. Slow Prepare Transaction and Commit Prepared

I've just encountered a strange problem. I've made a report in pgfourine, and found out that my XA transactions started to work really slow. Prepare transaction and commit prepared combined took ...
1
vote
1answer
428 views

Sharing a transaction while using AbstractRoutingDataSource to switch datasources

How to share a transaction between datasources when using AbstractRoutingDataSource to switch the active data source? So far, without the transaction the queries get executed on both databases ...
1
vote
2answers
871 views

xa_commit failed when trying to commit jms transaction

We are trying to write a message to a broker queue. But the whole request fails when it tries to commit the JMS transaction & then it tries to rollback each subsequent time. We use oracle XA ...
0
votes
1answer
157 views

Performance Overhead of XA Data Sources - Best Practices

I am trying to understand the Impact of XA Datasources on Performance. In many applications, it happens that not all the transactions need to participate in Distributed Transactions (meaning only a ...
0
votes
0answers
213 views

XA transaction example Weblogic

I'm using Weblogic 11g. At some point my Java EE application has to call three remote EJB methods each on a different server. My code snippet: Hashtable<String, Object> firstServerEnv = ...
0
votes
1answer
74 views

In-memory java POJO XA-capable database

Good day! I am searching for java database that: stores data in memory as POJO without any serialization; provides HashMap-like interface; supports XA. Does such database exist?
0
votes
1answer
276 views

Spring + JPA/Hibernate + ActiveMQ with XA/JTA in un-managed container. Not seeing errors, but not seeing data being committed to database

I'm in the process of adding JMS capabilities (via ActiveMQ) to an existing Spring/Hibernate web application. Consequently, I'm wanting to add XA/JTA capabilities to this app such that I can manage ...
2
votes
1answer
162 views

Atomikos transaction using two database

I have tested Atomikos JTA using single database transaction and works great. But I don't see any examples for transactions across two database. Note: I am using Atomikos standalone API (i.e. not with ...
0
votes
0answers
26 views

IMAP support for XA transactions?

Is there some implementation of IMAP server which supports XA (distributed) transactions? I'd like to flag a message and insert a row into database, at the same time. Update: Maybe JBoss SOA does ...
1
vote
1answer
276 views

Does JTA work across multiple threads?

From JTA specs i understand that it works (or supports) distributed transactions only for calling thread. Does this mean that transactions cannot be spanned across multiple threads? Or it depends on ...

1 2