Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
318 views

Can I reuse a UserTransaction instance after commit()?

Is the reusage of the ut instance in the following code correct? UserTransaction ut = (UserTransaction)ctx.lookup("java:comp/UserTransaction"); ut.begin(); doSomeWork(); ut.commit();//Or ...
3
votes
2answers
746 views

Spring/JTA/JPA DAO integration test doesn't rollback?

My DAO integration tests are failing because entities created during the tests are still in the database at the start of the next test. The exact same behavior is seen from both MySQL 5 and H2. The ...
2
votes
2answers
488 views

Java: XA Transaction propagation within many threads

How can I use a transaction manager (such as Bitronix, JBoss TS or Atomikos) in a Java SE (not JEE or Spring) to support the following use case: Let's assume we have the following class: public ...
2
votes
1answer
258 views

ClassNotFoundException with EHCache-Atomikos

I'm trying to use EHCache's transactional abilities together with Atomikos and Apache Tomcat (for usage with JMS and Hibernate but that's just to assure the sceptics I really need JTA). I'm currently ...
2
votes
1answer
436 views

How to move location of Atomikos's tm.out and *.epoch files?

I'm running a J2SE application that uses Atomikos which dumps it's numerous log files to the current directory. I'd like to move the location of these files to "/tmp", but I cannot locate a ...
2
votes
2answers
1k views

when to use global transaction Or use spring aop for transaction

Q1. i do understand when we need to deal with multiple databases, we need to use global transaction. but from this post http://fogbugz.atomikos.com/default.asp . the person suggested just use spring ...
1
vote
1answer
98 views

Atomikos or JBossTS without JDBC

is it possible to implement one of the former Transaction Manager if the datasource is not callable via JDBC? Edited I want to create an addin for an existing application. My addin shall be ...
1
vote
1answer
45 views

Is it possible to set up parallel transactions in JTA (Atomikos)

I have two transactional resources, database and message queue. So I use Atomikos as the XA transaction manager. Inside a transaction (tx1), is it possible to open another separated transaction (tx2) ...
1
vote
1answer
122 views

Isolation within the same process with Infinispan

I'm building a application around an Infinispan cache and the Atomikos transaction manager. I found out that the transaction isolation is not working for transactions open in two different threads on ...
1
vote
1answer
177 views

Atomikos AtomikosJTATransactionFactory giving ClassCastException

I was trying to implement Atomikos Transaction Manager in my code which is JPA on top of Hiberate. I'm getting this error. Any help highly appreciated.: Caused by: java.lang.ClassCastException: ...
1
vote
1answer
375 views

What does “TERMINATED” state of UserTransaction mean on Atomikos logs?

I'm using Atomikos essential transactions as my TM in my J2SE application. I have the following code: if (userTransaction.getStatus()== Status.STATUS_ACTIVE){ userTransaction.commit(); } and then ...
1
vote
2answers
2k views

Differences between javax.jms.ConnectionFactory and javax.jms.XAConnectionFactory

I'm entering the world of JTA, due to need of distributed transactions, and I'm uncertain about the differences between javax.jms.ConnectionFactory and javax.jms.XAConnectionFactory or more accurately ...
1
vote
1answer
592 views

How to set transaction timeout on Jetty JNDI Atomikos configuration

I am in the process of converting various Spring beans to JNDI lookups. Currently I am using Jetty to test this. I have configured the UserTransaction according to the Jetty documentation and it ...
1
vote
2answers
643 views

How to remove/hide Atomikos startup error message?

When Atomikos is configured via Spring, a jta.properties or transactions.properties file is not needed. Nonetheless, Atomikos starts up with the follow messages printed to stderr: No properties path ...
1
vote
2answers
574 views

How to set Atomikos to not write to console logs?

Atomikos is quite verbose when used. There seems to be lots of INFO messages (mostly irrelevant for me) that the transaction manager writes out to the console. The setting in the ...
1
vote
1answer
1k views

Prepared transactions with Postgres 8.4.3 on CentOS

I have set 'max_prepared_transactions' to 20 in the local postgres.config and yet the transaction fails with the following error trace (but only on Linux). Since in Windows the same code works ...
1
vote
1answer
1k views

Jetty datasource with Atomikos UserTransaction

I have two datasources in my Web application (principalDB and backupDB) on two Postgresql DBs, and a web container managed transaction manager (with Atomikos) for them. Spring FW and Hibernate are my ...
1
vote
4answers
2k views

Atomikos + Jetty in a Maven build environment - Classloader issue?

I am working on a project with multiple JDBC data sources and JTA. I use Maven as a build tool, and I'd like to use the Jetty plugin (6.1.20) to run the application during development. I am trying to ...
0
votes
2answers
62 views

Programming BMT - UserTransaction

Is the complete programming of BMT based on UserTransaction interface? In other words, if I want to use BMT, is there any scenario when I would require more services than those provided by the ...
0
votes
2answers
100 views

Transactions usage in DAO's

I'm using Hibernate 3.6.9 with Atomikos and Spring 3.1. After reading Spring @Transactional Annotation Best Practice I've removed @Transactional annotations from all DAO's and I've left them only on ...
0
votes
2answers
76 views

How do I get my Spring transactionmanager in my integration test to really be transactional?

I have a small Spring app that reads a few databases, and writes a small table in one database. I have a @Service-annotated class with a @Transactional method. That method calls a method in a DAO ...
0
votes
2answers
83 views

How to call stored procedures in Sybase correctly

I'm trying to call some legacy stored procedures on a Sybase Database (ASE 15) using Spring JDBC. I've got it working pretty good but I can't figure out how to get the returned value from the proc. ...
0
votes
3answers
171 views

Atomikos vs. Bitronix vs. JBossTS - MVCC and Nested Transactions

I want to implement one of the former Transaction Manager. However, since I am still in the concept phase I would like to try all of these Transaction Manager. My criterias for the final choice are ...
0
votes
0answers
164 views

Atomikos + Infinispan + Jetty errors

I'm using Spring with hibernate, atomikos and infinispan on jetty. After annotating any entity as @Cache(usage = CacheConcurrencyStrategy.TRANSACTIONAL) following error appears 13:24:02.590 [main] ...
0
votes
1answer
138 views

Atomikos JTA - Recover error

I am implementing JTA using Atomikos and dep[loyed on server it works fine with multiple database rollback but when i restart the server it gives below error and if i delete the log file it restarts ...
0
votes
0answers
88 views

Error creating proxy of connection AtomikosNonXAPooledConnection

Im working on java web application which used Atomikos for transactions. At the server start-up i'm getting following error and this error come only when server start. This doesn't impact the database ...
0
votes
1answer
427 views

ActiveMQ JMS XA Atomikos - Transaction not started error

The situation is we want to use XA transactions to coordinate activity between ActiveMQ and Hibernate (Sql Server 2008). We are using: Spring 3.0.5 Hibernate 3.6.2 ActiveMQ 5.5.0 Atomikos 3.7 We ...
0
votes
3answers
417 views

how to write a oracle function to update tables on different schemas

hello i'm porting a wbsphere application to tomcat, i have to work on two database on the same server and i've integrated tomcat with atomikos transactionessential. This is my first project with jta, ...