Simple client/server exchanging objects

Jeff Kunce kuncej at mail.conservation.state.mo.us
Tue Feb 15 10:45:26 EST 2000


> > > I`d like to make a client/server application exchanging objects of
> > > different type, sizes etc. Are there any simple tutorials or docs
> > > available on this, and what are my options on how to implement this ??
> Yeah, that`s what I thought, but the serialize-bit isn`t the problem.
> The server/client-part is. How do I set up a server listening to a port,
> waiting for clients to connect and upload objects??

I'd really recommend looking at XML-RPC:
    http://www.pythonware.com/products/xmlrpc/
It's really simple and is something of a standard.
If you don't want to use it as-is, it still provides a good
basic example of client/server in python.

  --Jeff






More information about the Python-list mailing list