> Hi @all,
>
> I`m actually working at some piece of software
> with RMI and I wonder, if it is possible, to
> reference in my remote class to an object wich is
> not remote
Sure ! All parameters you transmit to your remote object must be
Serializable, which of course is the case for String.
Of course, you transmit A COPY of the parameter !
By the way, remote references are also serializable...

Signature
Rémi Bastide
http://liihs.irit.fr/bastide
Sonja Garcia Burgos - 07 Dec 2005 19:00 GMT
> Sure ! All parameters you transmit to your remote object must be
> Serializable, which of course is the case for String.
> Of course, you transmit A COPY of the parameter !
> By the way, remote references are also serializable...
thanks :-)
I'll try it again. Maybe I did something wrong before.