Re: Transaction problems

2001-07-16 Thread Christian Bagnoli
, July 13, 2001 6:14 PM Subject: Re: Transaction problems Hi Christian, Frankly we have the same problem, trying to access the entity bean through a session bean and not being able to rollback. However rollback is working perfectly fine in stateful/stateless session bean. One thing which I

RE: Transaction problems

2001-07-13 Thread J Davis
We would also be interested in a solution to this problem as we have encountered the same thing. We are using 1.5.2 and Oracle 8.1.6 for our situation. We have also run into an issue where if you start a transaction and inside hit a lot of different data/ejbs the Orion server maxes out it's

Re: Transaction problems

2001-07-13 Thread Rafael Alvarez
Hello Christian, The ejb-name tag in method must match the ejb-name in entity or session. Also, specify a trans-attribute. Try putting this in your ejb-jar.xml: container-transaction method ejb-nameMyLogEnt/ejb-name method-name*/method-name trans-attributeRequired/trans-attribute

Re: Transaction problems

2001-07-13 Thread aby
Hi Christian, Frankly we have the same problem, trying to access the entity bean through a session bean and not being able to rollback. However rollback is working perfectly fine in stateful/stateless session bean. One thing which I noticed in your xml file is that you have not given the

RE: Transaction problems

2001-07-13 Thread Jon Rue
As far as I have seen Orion behaves as per spec in regard to transactions. I am not sure what the default transaction type Orion will assume if you do not explicitly declare one in the ejb-jar.xml file but I imagine it defaults to supports. You should explicitly declare your transaction attribute

RE: Transaction problems

2001-07-13 Thread elephantwalker
:[EMAIL PROTECTED]]On Behalf Of J Davis Sent: Friday, July 13, 2001 7:44 AM To: Orion-Interest Subject: RE: Transaction problems We would also be interested in a solution to this problem as we have encountered the same thing. We are using 1.5.2 and Oracle 8.1.6 for our situation. We have also run

Re: Transaction problems...

2000-08-22 Thread Chris Miller
I'm just guessing, but have you tried setting exclusive-write-access="false" in your orion-ejb-jar.xml file? It sounds like Orion is doing some optimisation to speed things up because it thinks it has exclusive write access to the database - but your triggers are going behind Orion's back without

Re: Transaction problems...

2000-08-22 Thread jbirchfield
| | cc: | | Subject: Re: