Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with UserTransaction in Websphere 5 Help needed...

Status
Not open for further replies.

stevenanto

Programmer
Oct 9, 2003
1
IN
Hi,

This is Stephen.

I am using FrontiersuiteforJDO(OR MAPPING TOOL) with websphere 5.

What my goal is,getting a userTransaction from websphere application server and use it in my coding for jdo.

I am getting the following exception while running my servlet in websphere 5

java.lang.IllegalStateException 07/29/03 11-48:Servlet.Engine.Transports : 0:JFuseConnection:initializeForUse: at com.ibm.ejs.jts.jta.TransactionImpl.enlistResource(TransactionImpl.java:444) 07/29/03 11-48:Servlet.Engine.Transports : 0:JFuseConnection:initializeForUse: at com.objectfrontier.jfuse.jca.spi.JFuseConnection.initializeForUse(JFuseConnection.java:222)


My servlet code:


javax.transaction.UserTransaction utx = (javax.transaction.UserTransaction)getInitialContext().lookup("java:comp/UserTransaction");


utx.begin();


------

coding

-------

utx.commit();


I am getting this error in log file.

07/31/03 06-49:Servlet.Engine.Transports : 0:JFuseConnection:initializeForUse:Enlisting with Transaction Manager
07/31/03 06-49:Servlet.Engine.Transports : 0:JFuseConnection:initializeForUse:Unalbe to enlist resource to the transaction

07/31/03 06-49:Servlet.Engine.Transports : 0:JFuseConnection:initializeForUse:java.lang.IllegalStateException
07/31/03 06-49:Servlet.Engine.Transports : 0:JFuseConnection:initializeForUse: at com.ibm.ejs.jts.jta.TransactionImpl.enlistResource(TransactionImpl.java:444)


Can u please advise me where i am wrong?

Is it problem with websphere or jdo vendor?


Thanx in advance
Stephen

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top