JOTM is an open source JTA transaction manager.
0
votes
0answers
190 views
JOTM connection pool error - Cannot send XA
We are intermittently getting this error on several of our servers running a Kuali application. The application is using the JTOM connection pool. Any ideas on what could cause this or how to go ...
0
votes
0answers
93 views
JOTM with Websphere
How do I use JOTM as a Transaction Manager replacing Websphere as the TM for an application using Websphere as app server?
I tried to follow the examples and rebind "UserTransaction" to the context. ...
1
vote
1answer
207 views
JOTM getTransactionManager().getTransaction() return null
I'm using spring, oracle and jotm (in tomcat) to use 2PC commit.
Below is the spring configuration.
<aop:config>
<aop:pointcut id="defaultOperation"
expression="execution(* ...
1
vote
0answers
372 views
Using JOTM transaction manager Doesn't works on Tomcat
Facing a strange problem here, below is the configuration i am using:
1. Apache Tomcat 6.0.26
2. mySql
3. Spring framework+ Hibernate
We have used JOTM for transaction management
<bean id="jotm"
...
0
votes
2answers
453 views
Spring global transaction committed after getting an element
I am using Spring and Hibernate with Jta Transactions, I have 2 databases, and I have a problem in a transactional method.
In this method I insert a lot of objects but I throws an exception to ...
0
votes
1answer
1k views
Configuring JPA and JOTM without Spring
Can anyone point me to an example of configuring JPA/JOTM in an environment where Spring isn't being used?
I'm building a web-app with Tomcat and JPA/MySQL. Currently I'm just using the ...
2
votes
2answers
2k 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 ...
3
votes
2answers
2k views
spring transactional cpool. Which one do I use?
I originally set up spring with xapool, but it turns out that's a dead project and seems to have lots of problems.
I switched to c3p0, but now I learn that the @Transactional annotations don't ...
1
vote
1answer
676 views
Hibernate EntityManager + JOTM: transactions are not used
I am trying to integrate together JOTM and Hibernate EntityManager to test my EJBs in a transactional manner environment but out-of-container.
My test looks like the following:
Start JOTM
Put ...
1
vote
2answers
1k views
Maven, Jetty, JOTM
I have been unable to configure JOTM ontop of Jetty inside a Maven build environment. The exception I get when I try to run my application is the following:
2009-07-21 19:47:23.499::WARN: Config ...
7
votes
5answers
40k views
Spring JTA TransactionManager config: Supporting both Tomcat and JBoss
I have a web application using JPA and JTA with Spring. I would like to support both JBoss and Tomcat. When running on JBoss, I'd like to use JBoss' own TransactionManager, and when running on Tomcat, ...
