Python XMLRPC with concurrent requests

Posted by MattB on Stack Overflow See other posts from Stack Overflow or by MattB
Published on 2009-10-19T14:54:08Z Indexed on 2010/05/12 0:34 UTC
Read the original article Hit count: 285

Filed under:
|

I'm looking for a way to prevent multiple hosts from issuing simultaneous commands to a Python XMLRPC listener. The listener is responsible for running scripts to perform tasks on that system that would fail if multiple users tried to issue these commands at the same time. Is there a way I can block all incoming requests until the single instance has completed?

© Stack Overflow or respective owner

Related posts about xmlrpc

Related posts about python