Simple client/server exchanging objects

Vetle Roeim vetler at ifi.uio.no
Mon Feb 14 08:38:50 EST 2000


* Thomas Weholt
> Hi,
> 
> 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 ??
> 
> The objects are rather simple, but can be huge in size.

Sound like CORBA would do the trick here.

Either that, or you just serialize your objects, push them over the
link and then read the data back into new objects.

Perhaps the latter example would be best. You avoid having to learn
CORBA ;)

vr



More information about the Python-list mailing list