Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
675 views

Delivery of JMS message before the transaction is committed

I have a very simple scenario involving a database and a JMS in an application server (Glassfish). The scenario is dead simple: 1. an EJB inserts a row in the database and sends a message. 2. when ...
2
votes
2answers
928 views

If I access UserTransaction does this mean that I use 2 phase commit or XA?

UserTransaction ut=lookup.... ut.beginTransaction(); saveToFooDB(); statelessEjb.transactionSupportedMethod(); //saves something to the Foo DB saveToFooDB(); ut.commit(); If i was doing the above ...
1
vote
1answer
129 views

Distributed Transaction across two EJB server

I was reading an article about 2-PC and distributed transaction in EJB server. It says: A 2-PC allows transactions to be managed across different servers and resources (e.g., databases and ...
1
vote
1answer
109 views

Oracle ALTER SESSION ADVISE COMMIT?

My app to recovers automatically from failures. I test it as follows: Start app In the middle of processing, kill the application server host (shutdown -r -f) On host reboot, application server ...
1
vote
2answers
185 views

Two Phase commit-How to test

We are trying to implement two phase commit on a Java/Jboss/Apache environment. However we have difficulty understanding how we can test that it actually works? are there any gui tools that can help ...
1
vote
1answer
324 views

Groovy, How to do 2 phase commit? Is Sql.withTransaction can manage transaction scope accross multiple databases?

Well, I think my question says it all. I need to know if Groovy SQL supports two phase commits. I'm actually programming a Grails Service where I want to define a method which does the following: Get ...
1
vote
2answers
919 views

Transaction Processing Using PHP and MySQL

I'm trying to implement two-phase commit using PHP and MySQL, and coming up short. The main block I've found is that I'm unable to store the MySQL connection resource in a place where I can find it ...
1
vote
1answer
372 views

Last Resource Optimization

I'm writing a Resource Adaptor which does not support two phase commit. I know there is an optimization technique called: "Last Resource Optimization". On JBoss your XAResource class should implement ...
0
votes
1answer
29 views

Using XA with databases that don't support it natively?

Is there an open-source Java library that adds XA support to databases that don't support it natively? That is, it wraps a non-XA JDBC datasource and takes care of the necessary commits/rollbacks ...
0
votes
1answer
94 views

Spring JMS 2-phase-commit in java SE

I am not running under Java EE. I want to have an XA transaction using Spring to share a transaction between DB and JMS. Does spring provide such a functionality or must I use an external ...
0
votes
0answers
66 views

Two Phase Commit, Tcp, and Blocking

I hear that two phase commit has the potential problem of a failure leading to blocking and that three phase commit solves the blocking problem. I've been reading and I can't seem to understand how ...
0
votes
0answers
376 views

Why WCF distributed transaction does not rollback?

As described in "Programming WCF Services" by Juval Lowy, WCF uses two-phase commit protocol (2PC) to manage distributed transactions: When the transaction ends the transaction manager checks the ...
0
votes
1answer
204 views

How can I enlist an ODBC connection in an XA 2PC transaction?

Our application uses ODBC to communicate with a database (Both DB2 and Oracle, if it makes a difference), and delegates business logic to Java by way of JNI (So it uses Java and C). What I'd like to ...