> Thanks for your reply. By 'passing' an object, I mean that the object
> is stored on the server & that should be modified from the client
> through CORBA.We use JACORB. What are the different ways to modify an
> object (which is on the server) frm the client?
So you don't mean 'passsing an object' at all, you mean calling its
methods remotely. There's only mechanism for that in CORBA, and it's
called CORBA. You need to define your object either via IDL or as an
RMI/IIOP remote object and pass a *remote reference* to it to the client
(either via COSNaming or another remote method), and have the client
execute methods on the remote reference, which will really be a stub.
So have a look at IDLJ and RMI/IIOP.
Raga - 21 Feb 2007 09:42 GMT
On Feb 21, 4:41 am, Esmond Pitt <esmond.p...@nospam.bigpond.com>
wrote:
> > Thanks for your reply. By 'passing' an object, I mean that the object
> > is stored on the server & that should be modified from the client
[quoted text clipped - 9 lines]
>
> So have a look at IDLJ and RMI/IIOP.
OK . Sure. Thanks!