Weblogic « Transaction « JPA Q&A





1. Eclipselink JPA, Oracle, Weblogic, Calling Persist does not commit to database    stackoverflow.com

I'm just starting to take a look at java persistence (at the moment with eclipse's default provider of eclipselink). Basically just creating an object and attempting to persist it to the ...

2. ejb3-using-2-persistence-units-within-a-transaction    stackoverflow.com

I am having problems connecting to 2 persistence units from within the same transaction using following tech stack, WLS 10.3.x, Eclipselink 2.1, Oracle 11g JDBC driver, Informix 10 JDBC driver Using inputs from ...

3. EJJB Timer Transaction -XA Exception    stackoverflow.com

I am using EJB 3.0 timer.When my Timeout method gets invoked,I use JPA to insert a record in one of the table.I use JPA to persist the data.I defined the persist ...

5. Transaction managment in Weblogic    forum.hibernate.org

Hi, I have a problem with managing transaction from a stateless EJB in weblogic. I have a weblogic startup class where i bind a sessionfactory to the JNDI-tree. The configuration is as follows: Configuration cfg = new Configuration() .addClass(IMArende.class) .addClass(...) .addClass(...) .addClass(...) .addClass(Varning.class); cfg.setProperty("hibernate.dialect", "net.sf.hibernate.dialect.Oracle9Dialect"); cfg.setProperty("hibernate.transaction.factory_class", "net.sf.hibernate.transaction.JTATransactionFactory"); cfg.setProperty("hibernate.transaction.manager_lookup_class", "net.sf.hibernate.transaction.WeblogicTransactionManagerLo okup"); SessionFactory factory = cfg.buildSessionFactory(); From my session bean, I fetch a ...

6. Transaction managment in Weblogic    forum.hibernate.org

Hi, I have a problem with managing transaction from a stateless EJB in weblogic. I have a weblogic startup class where i bind a sessionfactory to the JNDI-tree. The configuration is as follows: Configuration cfg = new Configuration() .addClass(IMArende.class) .addClass(...) .addClass(...) .addClass(...) .addClass(Varning.class); cfg.setProperty("hibernate.dialect", "net.sf.hibernate.dialect.Oracle9Dialect"); cfg.setProperty("hibernate.transaction.factory_class", "net.sf.hibernate.transaction.JTATransactionFactory"); cfg.setProperty("hibernate.transaction.manager_lookup_class", "net.sf.hibernate.transaction.WeblogicTransactionManagerLo okup"); SessionFactory factory = cfg.buildSessionFactory(); From my session bean, I fetch a ...

7. Hibernate, Weblogic and XA Transactions    forum.hibernate.org

8. Transaction Management with Weblogic    forum.hibernate.org

9. Hibernate JTA configuration issue with Weblogic 10    forum.hibernate.org

Hello All, I am running into a configuration issue with Hibernate 3.2 and Weblogic 10 when trying to use container managed transactions. I have been researching other similar problems on different versions of Weblogic but none of these suggestions and resolutions have fixed the problem. I receive the following hibernate exception on startup : org.hibernate.HibernateException: The chosen transaction strategy requires access ...





10. Transaction setTimeout has no effect to weblogic JTA Timeout    forum.hibernate.org

I'm using hibernate 3.2.1 joining weblogic 9.2 and JTATransaction. In my application I have a initialisation step in which needs a long transaction ~10 Minutes until it is finished. I don't want to change the default JTA Timeout configuration in weblogic (30 seconds) therefore I want to set the timeout manually in the application in this way. trans = session.getTransaction(); trans.setTimeout(600); ...

11. Transactions on Weblogic 10.3 - Hibernate 3    forum.hibernate.org

Newbie Joined: Fri Jun 05, 2009 3:07 am Posts: 2 I have a J2EE application written in EJB2 and Hibernate 3 and running on Weblogic 9.2 MP1. I'm trying to migrate it to Weblogic 10.3. I have the following method on my EJB: Code: @LocalMethod(transactionAttribute = Constants.TransactionAttribute.REQUIRED) public User getUserByUserName(String userName) { ...