john14 wrote:
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 wh
Unfortunately no because this is a single threaded http server. It's
great for testing stuff out, but it doesn't scale unless you make it
scale. I am assuming you could use the Zope application server to
scale your code.
--
http://mail.python.org/mailman/listinfo/python-list
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 m