SimpleXMLRPCServer

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Andreas R.

    #1

    SimpleXMLRPCServer

    Hello everyone,


    I'm doing some experiments with the SimpleXMLRPCSer ver 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?

    Thanks in advance.







    - Andreas R.

    www.openrts.org - Open Source RTS game
  • infidel

    #2
    Re: SimpleXMLRPCSer ver

    > I'm doing some experiments with the SimpleXMLRPCSer ver in Python,[color=blue]
    > 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?[/color]

    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.

    Comment

    Working...