Re: [JBoss-user] Transaction not saving entity bean changes (SimpleTest Code included)

2003-01-08 Thread Kris
David, I've put together a simple test program which shows the behavior I described in the initial posting for this thread. I've attached the source code, Junit test. and ANT script as a jar file. When you run the test with 'no' transaction the test succeed. If you run with transaction require

Re: [JBoss-user] Transaction not saving entity bean changes

2003-01-06 Thread David Jencks
On 2003.01.06 05:53:21 -0500 [EMAIL PROTECTED] wrote: > On Sun, Jan 05, 2003 at 11:32:05PM -0500, David Jencks wrote: > > inside the jboss vm, if you start a user transaction or container > managed > > transaction, any connection obtained in the same thread is enrolled in > the > > transaction. >

Re: [JBoss-user] Transaction not saving entity bean changes

2003-01-06 Thread marius
On Sun, Jan 05, 2003 at 11:32:05PM -0500, David Jencks wrote: > inside the jboss vm, if you start a user transaction or container managed > transaction, any connection obtained in the same thread is enrolled in the > transaction. I suppose it become more complicated in my case. I have one method i

Re: [JBoss-user] Transaction not saving entity bean changes

2003-01-05 Thread David Jencks
inside the jboss vm, if you start a user transaction or container managed transaction, any connection obtained in the same thread is enrolled in the transaction. This assumes the connection is of a type that supports jta transactions: for jdbc, this means you didn't set up a NoTxConnectionManager.

Re: Re: [JBoss-user] Transaction not saving entity bean changes

2003-01-05 Thread Kris
I do not have any SQL statement, i.e. bean transactions and/or persistency are all managed by the Container (CMP). Therefor I would expect that upon the updateShippedQuantities remote method call returning, the transaction would had been committed and persisted. But since you mentionned it, the

Re: [JBoss-user] Transaction not saving entity bean changes

2003-01-05 Thread marius
You are not using pure SQL somewhere in this part? Cause if you do, this code run in another transaction than the CMP-code and thus don't see the changes of the CMP before that transaction is commited. For me this resulted in the junit test failing, and I had to commit the usertransaction inside

RE: [JBoss-user] Transaction not saving entity bean changes

2003-01-05 Thread Rajeshwar Rao V
Kris [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 05, 2003 12:39 PM To: JBoss User List Group Subject: [JBoss-user] Transaction not saving entity bean changes Hi, any help with this one would be appreciated. ** Environment: - Plain out-of-the-box jboss-3.0.4_tomcat-4.1.12 - Window NT

[JBoss-user] Transaction not saving entity bean changes

2003-01-04 Thread Kris
Hi, any help with this one would be appreciated. ** Environment: - Plain out-of-the-box jboss-3.0.4_tomcat-4.1.12 - Window NT, 4.0, patch-level 5 ** Scenario: - A stateless session bean method, i.e. updateShippedQuantities, loops on an entity bean method call, i.e. updateShippedQuantity,