[jboss-user] [EJB 3.0] - Re: reentrant annotation?

2006-11-28 Thread ALRubinger
Shouldn't be. Violation of the EJB3 Spec, section 4.3.13: anonymous wrote : Clients are not allowed to make concurrent calls to a stateful session object. If a client-invoked business | method is in progress on an instance when another client-invoked call, from the same or different client,

[jboss-user] [EJB 3.0] - Re: reentrant annotation?

2006-11-28 Thread supert24
But wasnt there an deployment descriptor tag in EJB 2.1? Is it not ported to annotations? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989517#3989517 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989517

[jboss-user] [EJB 3.0] - Re: reentrant annotation?

2006-11-28 Thread ALRubinger
If I remember correctly... Entity Beans could be marked as reentrant. Session Beans did not require a reentrant marking because if Stateless, the container would return another separate instance, and Stateful was prohibited (as it is now)... EJB 2.1 Spec, Final Draft, 7.12.10: anonymous