Re: XMLRPC - persistent object state on server

2009-04-10 Thread Demidov Andrey
Thank you. Of course, it is my stupid mistake. Change: > def say(self): > return a > > to: > def say(self): > return self.a > > Cheers, > Brian > -- http://mail.python.org/mailman/listinfo/python-list

XMLRPC - persistent object state on server

2009-04-10 Thread Demidov Andrey
Hi, all I need a XMLRPC server, which works with database and returns data to the clients. But I can not find any possibility to keep the object state on server between the clients calls. Here is my code: 1. Server: from SimpleXMLRPCServer import SimpleXMLRPCServer from Simple