-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: JCA and Session.beginTransaction()
PostPosted: Mon Mar 07, 2005 10:56 pm 
Newbie

Joined: Wed Nov 12, 2003 1:11 pm
Posts: 3
Location: Brazil
Hi all,

Why does method org.hibernate.jca.JCASessionImpl.beginTransaction() throw UnsupportedOperationException? IsnĀ“t possible begin a transaction inside a connector?

Follow the implementation of this method:

Code:
package org.hibernate.jca;

public  class JCASessionImpl implements org.hibernate.classic.Session {

....
   public Transaction beginTransaction() throws HibernateException {
      throw new UnsupportedOperationException();
   }
....

}


Rgdes,

Leandro


Top
 Profile  
 
 Post subject:
PostPosted: Tue Mar 08, 2005 11:25 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 3:00 pm
Posts: 1816
Location: Austin, TX
This code is currently undergoing major refactoring.

However, not allowing Session.beginTransaction() calls basically means that the resource adapter does not support non-coordinated transactions; the TransactionManager must coordinate all transactions against the resource. This is totally reasonable in a J2EE-compliant app server.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.