cw
2008-07-15 15:09:38 UTC
How is it possible to use a interface returned by a Remotimg call as
parameter of another remoting call?
Example:
interface I1 {
I2 GetI2();
Access(I2 i2);
}
If a client executes the remoting calls
I2 = i1.GetI2();
i1.Access(i2);
an exception is thrown because i2 is a reference to the proxy.
Any ideas? Thank you
parameter of another remoting call?
Example:
interface I1 {
I2 GetI2();
Access(I2 i2);
}
If a client executes the remoting calls
I2 = i1.GetI2();
i1.Access(i2);
an exception is thrown because i2 is a reference to the proxy.
Any ideas? Thank you