RE: [JBoss-user] How to avoid entity beans read lock ?

2002-10-08 Thread Georg Schmid
, October 07, 2002 13:24 To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] How to avoid entity beans read lock ? Could you please try the read-only tag at the method level, as described by Bill. It does work. If it doesn't, it is a bug and it would be good to know about it. Cheers

Re: [JBoss-user] How to avoid entity beans read lock ?

2002-10-08 Thread Scott M Stark
Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: Georg Schmid [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 07, 2002 11:37 PM Subject: RE: [JBoss-user] How to avoid entity beans read lock ? Hi, (this is slightly

Re: [JBoss-user] How to avoid entity beans read lock ?

2002-10-08 Thread Horia Muntean
Sacha Labourey wrote: Could you please try the read-only tag at the method level, as described by Bill. It does work. If it doesn't, it is a bug and it would be good to know about it. Cheers, Sacha Well, I am confused now: are u sure read-only attribute can be

Re: [JBoss-user] How to avoid entity beans read lock ?

2002-10-08 Thread Horia Muntean
Hi Georg, You said: If you cannot use the QueuedPessimisticEJBLock (which is usually the case when you need concurrent access to CMP EBs), and you need to synchronize your EBs, you can use the row-locking setting in the jbosscmp-jdbc.xml config file (in defaults or per EB) and let the database

RE: [JBoss-user] How to avoid entity beans read lock ?

2002-10-07 Thread Sacha Labourey
Hello, you can use the read-only tag at the bean or method level. Cheers, Sacha -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]De la part de Horia Muntean Envoyé : lundi, 7 octobre 2002 11:19 À : [EMAIL PROTECTED] Objet :

RE: [JBoss-user] How to avoid entity beans read lock ?

2002-10-07 Thread Georg Schmid
Hi, Take a look at the Instance Per Transaction CMP2.x configuration settings in standarjboss.xml. o You can make your EBs use that configuration by setting the configuration-name element in your jboss.xml. o You can mark your EB readonly. o You can mark certain methods of the EB read-only.

Re: [JBoss-user] How to avoid entity beans read lock ?

2002-10-07 Thread Horia Muntean
Thanks, but there could be some problems , problems that are coming from the fact the my EBs are not RO entirely. They have update methods also. So, here are my questions again: 1. I can't apply read-only to the entire bean 'cause I have other methods that perfom updates on the bean. 2. I

RE: [JBoss-user] How to avoid entity beans read lock ?

2002-10-07 Thread Sacha Labourey
Horia Muntean Envoyé : lundi, 7 octobre 2002 13:18 À : [EMAIL PROTECTED] Objet : Re: [JBoss-user] How to avoid entity beans read lock ? Thanks, but there could be some problems , problems that are coming from the fact the my EBs are not RO entirely. They have update methods also. So, here

Re: [JBoss-user] How to avoid entity beans read lock ?

2002-10-07 Thread Dmitri Colebatch
9:18 PM Subject: Re: [JBoss-user] How to avoid entity beans read lock ? Thanks, but there could be some problems , problems that are coming from the fact the my EBs are not RO entirely. They have update methods also. So, here are my questions again: 1. I can't apply read-only to the entire