The object passed over network by using RMI are passed by value. And when
you call EJB it is remote call.

The only way you can "simulate" call by reference is  that don't pass the
object reference, rather pass the object stub.
For that you have to make that object being passed as Remote object by
implementing Remote interface.

AFAIK there is not other way to achieve this..
Hope this helps...

Rajan


-----Original Message-----
From: A mailing list for Enterprise JavaBeans development
[mailto:[EMAIL PROTECTED]]On Behalf Of Shelly Aggrawal
Sent: Wednesday, September 08, 1999 2:35 AM
To: [EMAIL PROTECTED]
Subject: Passing by reference in EJBs


Hi All,

I have a very peculiar problem pertaining to argument passing in EJBs.

The problem is :
The client to the bean needs to pass objects to the bean. The bean is
supposed to fill up / change value of these arguments.  After the remote
method call the client should be able to get the values from the passed
argument. How can this be achieved? In short I want to achieve something
similar to 'pass by reference' of C++

Any kind of help will be useful.

Thanks and Regards,
Shelly

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to