> I'm doing some experiments with the SimpleXMLRPCServer in Python,
> and I've found it to be an excellent way to do high-level network
> operations.
>
> However, is there a way to enable "two-way" communication using XML-RPC?
> By that I mean, can the server contact all the clients?

To do that you'd want to use a protocol that maintains connections
between the server and clients, like the asyncore and async_chat
modules do.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to