question: howto transfer objects between server and client?

OpenPavilion BerndWill at googlemail.com
Sat Aug 11 06:00:10 EDT 2007


On 11 Aug., 11:21, Irmen de Jong <irmen.NOS... at xs4all.nl> 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.sourceforge.net
>
> --Irmen

Thanks Irmen,

just found out, that if I use "pickle.dumps(object)" (on client side)
and "pickle.loads(object)" (on server side) before and after sending,
I have access to the object.

I love this python language !
Python is a really, really nice language and I often find that the
solution is easier as I thought in the first place ...

Thanks anyway !!
Regards
Bernd




More information about the Python-list mailing list