I am working on Websphere 5.0 Version, Windows 2000 Professional. I have been able to deploy an EAR on the server. I have two stateless session beans and an Entity Bean. I am invoking the first stateless bean and this bean invokes the second stateless bean and the second inturn invokes the Entity Bean. I have given the transaction attribute as "SUPPORTS" for all the beans. I am able to invoke the methods on each of the bean and the data is also being retrieved from the DB, but while the data is returned back I get the "org.omg.CORBA.TRANSACTION_ROLLEDBACK" Exception.
I also came to know with some forum of increasing the transaction timeout value in the server, I could increase the value, but still in vain.
I see the following error in the SystemErr.log: ================================================ SystemErr R java.lang.reflect.InvocationTargetException: javax.transaction.TransactionRolle dbackException: CORBA TRANSACTION_ROLLEDBACK 0x0 No; nested exception is: org.omg.CORBA.TRANSACTION_ROLLEDBACK: javax.transaction.TransactionRolledba ckException: minor code: 0 completed: No
SystemErr R org.omg.CORBA.TRANSACTION_ROLLEDBACK: javax.transaction.TransactionRolledbackEx ception: minor code: 0 completed: No SystemErr R at java.lang.reflect.Constructor.newInstance(Native Method) SystemErr R at com.ibm.CORBA.iiop.UtilDelegateImpl.copyObjectByProxy(UtilDelegateImpl.java:119 7) SystemErr R at com.ibm.CORBA.iiop.UtilDelegateImpl.copyObject(UtilDelegateImpl.java:797) Syste mErr R at javax.rmi.CORBA.Util.copyObject(Util.java:327)
Can any one please let me know what could be the problem.