Questions tagged [java-transaction-service]

Java Transaction Service (JTS) specifies the implementation of a transaction manager which supports the JTA specification at the high-level and implements the Java mapping of the OMG Object Transaction Service (OTS) at the low-level.

JTS specifies the implementation of a transaction manager which supports the JTA specification at the high-level and implements the Java mapping of the OMG Object Transaction Service (OTS) at the low-level.

JTS uses the CORBA OTS interfaces for interoperability and portability, which defines a standard mechanism for any implementation that utilizes IIOP (Internet InterORB Protocol) to generate and propagate transaction context between JTS Transaction Managers.

Source: Oracle (Handling Transactions with Enterprise Beans: JTA and JTS Transaction Support )

7 questions
2
votes
1 answer

How to rollback series of jdbc transactions in java

My java class will be invoked with a certain number of records(consider 1000) every time. Each time when it got invoked , it needs to insert all the 1000 records into table. Now consider it got invoked three times(means it inserted 3000 records into…
Prudhvi B
  • 144
  • 2
  • 13
1
vote
0 answers

Spring transaction spanning multiple web services

Here is a portion of our code @Transactional public void createAccount(){ // db call on dao to insert data at TBL_ACCOUNT // web service call on insertUserInfo() method of UsersWebservice } In the code of UsersWebService: public void…
1
vote
1 answer

Absent Code attribute in method that is not native or abstract in class file javax/transaction/SystemException

I am building an application using JBoss AS 7.1 and I am writing a test @Test public void testGetLoginUser() throws Exception { final MarketCrudService crudService = new MarketCrudService(jpaRule.getEntityManager()); …
daydreamer
  • 87,243
  • 191
  • 450
  • 722
1
vote
0 answers

JTA CMT transaction management

In JBoss 5.1 environment I have an EJB client that starts transaction via lookup of remote UserTransaction interface. EJB beans on the server process several client calls and then client performs ut.commit(); All actions where done in one global…
d3ni5
  • 51
  • 4
0
votes
2 answers

Spring transaction does not rollback

We have a service class that goes like this @Service @Transactional public class DoSomeServiceImpl1 implements IDoSomeService { @Override public void doSomething() throws SomeException { //dao calls (database insert) //ldap dao call (ldap…
0
votes
1 answer

Porting J2EE application from weblogic to Jboss, JTS? (weblogic.jdbc.jts.Driver)

My weblogic(8.1) application uses weblogic.jdbc.jts.Driver to connect to Oracle. I'd like to port this app to JBOSS(4.0) and quick googling did not yield the correct driver to replace this JDBC JTS driver with in order to connect from Jboss, ideas?
Ville M
  • 2,009
  • 7
  • 30
  • 45
0
votes
1 answer

"JTS/JTA transaction has been aborted" in websphere 7 after jdk upgrade

I just had to upgrade my IBM JDK version from the one that came with the WebSphere 7 to fix an issue with Groovy. Now however when my app starts up I get the following stack trace and the error kills my apps initialization good and…