Remote object - is it possible to call some of methods of remote object in "local" mode -
10-31-2007
, 08:32 AM
Hi!
Is it possible to mark some of methods of remote object (MarshallByRef
singleton) as "local", and process them in local context, without
exchanging messages between the client and server? I'm thinking about
marking some methods with a certain atrtribute, and then processing
such methods in a dynamic client Sink by calling some predefined
static class methods without passing the message down the sinks.
The reason to do it is to be able to easy call static methods of based
on the same base abstract class remote objects by just calling a
method of the instance of class.
Is this possible at all? |