Re: RPCXML hide implementation.

2008-08-26 Thread skip
x> Simple code: x> class RpcClass: x> def one(self): #visible by RPC, available as public for other class x> return "one" x> def two(self): #INVISIBLE by RPC, available as public for other x> class x> return "two" x> Server.register_instance(Rpc

RPCXML hide implementation.

2008-08-26 Thread x_O
Hi I'm working recently with XMLRPC for python and It never was so easy. But I've meet a obstacle. Because python is not giving us any reasonable encapsulation mechanism, I have problems with hiding some part of the implementation. When class has 2 methods and I want to make rpc private only ON