Hi, I have an xmlrpc server. I using the python package xmlrpc. Here is what I am doing:
s = xmlrpc.server() s.addMethods(method_hash) s.bindAndListen(PORT) while 1: try: s.work() except: e = sys.exc_info() The problem is that when I send multiple requests they are queued and processed one after the other. Is there some other method that will allow me to process multiple request at the same time? Thank You -- http://mail.python.org/mailman/listinfo/python-list