• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Transaction Time out error.

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,

I am getting timeout using Webshpere ND 6.0.2.39

[3/10/10 15:55:36:775 GMT] 0000003e TranManagerIm I WTRN0041I: Transaction 0000012745D15988000000010003DC125C82E0F7B26B255CA65669129AEF9FE393243BB70000012745D15988000000010003
DC125C82E0F7B26B255CA65669129AEF9FE393243BB700000001 has been rolled back.
[3/10/10 15:55:36:778 GMT] 0000003e ExceptionUtil E CNTR0019E: EJB threw an unexpected (non-declared) exception during invocation of method "findByPrimaryKey". Exception data:
com.ibm.websphere.csi.CSITransactionRolledbackException: Transaction rolled back; nested exception is:
javax.transaction.TransactionRolledbackException: Transaction is ended due to timeout
at com.ibm.ejs.csi.TransactionControlImpl.completeTxTimeout(TransactionControlImpl.java(Compiled Code))
at com.ibm.ejs.csi.TransactionControlImpl.preInvoke(TransactionControlImpl.java(Compiled Code))
at com.ibm.ejs.container.EJSContainer.preInvokeActivate(EJSContainer.java(Compiled Code))
at com.ibm.ejs.container.EJSContainer.preInvoke(EJSContainer.java(Compiled Code))
at com.ibm.commerce.base.objects.EJSRemoteCMPSchedulerConfigHome_3b1fe5e9.findByPrimaryKey(EJSRemoteCMPSchedulerConfigHome_3b1fe5e9.java(Compiled Code))
at com.ibm.commerce.base.objects._SchedulerConfigHome_Stub.findByPrimaryKey(_SchedulerConfigHome_Stub.java(Compiled Code))
at com.ibm.commerce.base.objects.SchedulerConfigAccessBean.instantiateEJB(SchedulerConfigAccessBean.java(Compiled Code))
at com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean._instantiate(AbstractEntityAccessBean.java(Inlined Compiled Code))
at com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean.refreshCopyHelper(AbstractEntityAccessBean.java(Compiled Code))
at com.ibm.commerce.base.objects.SchedulerConfigAccessBean.refreshCopyHelper(SchedulerConfigAccessBean.java(Inlined Compiled Code))
at com.ibm.commerce.scheduler.Scheduler.getReadyToRunLateJob(Scheduler.java(Compiled Code))
at com.ibm.commerce.scheduler.Scheduler.prepareLateJobs(Scheduler.java(Compiled Code))
at com.ibm.commerce.scheduler.Scheduler.serverLoop(Scheduler.java(Compiled Code))
at com.ibm.commerce.scheduler.Scheduler.process(Scheduler.java:1663)
at com.ibm.commerce.scheduler.SchedulerSecurityPriviledgedAction.run(SchedulerSecurityPriviledgedAction.java:59)
at com.ibm.commerce.scheduler.Scheduler.run(Scheduler.java:1622)
Caused by: javax.transaction.TransactionRolledbackException: Transaction is ended due to timeout
at com.ibm.ws.Transaction.JTA.TranManagerImpl.completeTxTimeout(TranManagerImpl.java(Compiled Code))
at com.ibm.ws.Transaction.JTA.TranManagerSet.completeTxTimeout(TranManagerSet.java(Inlined Compiled Code))
... 16 more

Can someone please give an insight what could be the possible problem? Thanks in advance.
 
Ranch Hand
Posts: 498
Eclipse IDE Firefox Browser Fedora
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Nirmal,

Your problem is that your business transaction, has timed out, you can try one of the following:
The easy way - Change the timeout value for the transactions, WebSphere default is 2 minutes (Bad idea, but will work)
The right way - Why is your transaction taking so long? It is a database problem? A logic problem? Try to investigate that.

Regards,
 
I didn't do it. You can't prove it. Nobody saw me. The sheep are lying! This tiny ad is my witness!
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic