This is connected with my previous question Python web service.
I'll use Tornado to exchange information between server and clients. There will be one server and N clients. Clients will send information (disk usage, processes etc.) periodically (every 2 minutes or so). The data on client side will be represented by custom classes/lists. It would be nice to have the same data on the other side (server).
I have experience with SOAP and it would probably be ok for this (with enough bit timeouts on the server), but would rather use something more light and pythonic. The communication will be more or less only client -> server.
Both server and client side are writen in Python.
What should I look for in Twisted documentation for doing this kind of stuff?
edit: I'm not asking on how to serialize data (JSON or pickle or XML etc.). I would like to know what are the options of Twisted to transport data.
With SOAP I would have methods like this:
- sendDiskUsage(DiskUsage class instance)
- sendProcesses(ProcessList class instance)
- etc..
I would like to know what are the options with Twisted. One of them is XML-RPC which would be ok, but it's not my favourite...
edit2: the communication will be "two way" - client's will read tasks from server...