question: howto transfer objects between server and client?

2007-08-11 Thread OpenPavilion
Hello community, maybe one of you can help me out with a question regarding the transfer of objects betwen client an server: I have three files: ### ClassA.py ### class ClassA: def setA(self, newA): self.a = newA def getA(self): return self.a ### client.py ###

Re: question: howto transfer objects between server and client?

2007-08-11 Thread Irmen de Jong
OpenPavilion wrote: > Since XMLRPC has limited features: Is there any other server/client > technique to transfer objects (not strings, or dictionaries, but self > defined object types) ? Take a look at Pyro; http://pyro.sourceforge.net --Irmen -- http://mail.python.org/mailman/listinfo/pytho

Re: question: howto transfer objects between server and client?

2007-08-11 Thread OpenPavilion
On 11 Aug., 11:21, Irmen de Jong <[EMAIL PROTECTED]> wrote: > OpenPavilion wrote: > > Since XMLRPC has limited features: Is there any other server/client > > technique to transfer objects (not strings, or dictionaries, but self > > defined object types) ? > > Take a look at Pyro; http://pyro.sour