Re: Interceptor attempt

2010-11-11 Thread Marcus Bond
For additional commands, e-mail: user-h...@struts.apache.org ----- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org __ NOD32 5611 (2010) Information __

RE: Interceptor attempt

2010-11-11 Thread Altenhof, David Aron
>>> try { >>> // Try to commit: >>> tx.commit(); >>> >>> } catch (Exception ex) { >>>

Re: Interceptor attempt

2010-11-11 Thread Marcus Bond
--- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org - To unsubscribe, e-mail: user-unsubscr...@struts.apache.or

Re: Interceptor attempt

2010-11-11 Thread Dave Newton
On Thu, Nov 11, 2010 at 9:44 AM, Martin Gainty wrote: > i would strongly advise against issuing a commit until your app knows your DML > has successfully completed committing the transaction before DML has > completed will > put in the line of fire from the DBA "Don't issue a commit until DML ha

RE: Interceptor attempt

2010-11-11 Thread Martin Gainty
i would strongly advise against issuing a commit until your app knows your DML has successfully completed committing the transaction before DML has completed will put in the line of fire from the DBA http://download.oracle.com/javase/tutorial/jdbc/basics/transactions.html *feel free to ping

RE: Interceptor attempt

2010-11-11 Thread Altenhof, David Aron
Greg- Thanks for bumping my memory on when the page gets rendered. I remember reading that somewhere, but forgot when writing this. Committing the transaction in the action for save/delete seems to be the way to go. Regarding ThreadLocal, I'm a bit new to Java and still struggling a bit with