Hi,

I have not tried this looking for timeouts, but try controlling the 
transactions manually using first

@TransactionManagement(TransactionManagementType.BEAN)

and 
  | @Resource
  | UserTransaction utx;
  | 
in the following way:

  | utx.begin();
  | ...
  | utx.commit();
  | 
with exception handling.

However it is not clear from your mail if you actually need a transaction that 
last for 5+ minutes, or if it just is a long-lasting call that happends to be 
inside a transaction?

Thomas

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4153020#4153020

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4153020
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to