[jboss-user] [EJB 3.0] - Re: EJB3 CallByValue=false, but acts like its true

2008-06-11 Thread jaikiran
Are you calling the EJBs using the remote interface of the EJBs? As per the EJB3 Core specification 3.2.1, the parameters and return types are passed by value (which means that any changes to the parameters inside the bean will not be visible to the caller): anonymous wrote : 3.2.1 Remote

[jboss-user] [EJB 3.0] - Re: EJB3 CallByValue=false, but acts like its true

2008-06-11 Thread [EMAIL PROTECTED]
Thanks Kairan. You're right - I have been using remote. I thought that this JBoss EAR deployer CallByValue option was a feature implemented above and beyond the specification - it is, isn't it? I considered switching to local, but that just leaves the potential problem for someone else to

[jboss-user] [EJB 3.0] - Re: EJB3 CallByValue=false, but acts like its true

2008-06-11 Thread jaikiran
[EMAIL PROTECTED] wrote : | I thought that this JBoss EAR deployer CallByValue option was a feature implemented above and beyond the specification - it is, isn't it? | Not sure. [EMAIL PROTECTED] wrote : | I considered switching to local, but that just leaves the potential problem