No, I'm not using any accelerator. The code is extremely simple (from toofpy):
# XML-RPC test import xmlrpclib srv = xmlrpclib.Server('http://localhost:4334/RPC2/greeting') print srv.greeting('you', 5) # SOAP test import SOAPpy srv = SOAPpy.SOAPProxy('http://localhost:4334/SOAP/greeting') print srv.greeting('you', 5) It really surprised me that they were so slow to execute. <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Jack> When I try TooFPy with the SOAP and XML-RPC sample client code > Jack> provided in TooFPy tutorials, a log entry shows up quickly on web > Jack> server log window, but it takes a long time (5 seconds or longer) > Jack> for the client to output a "Hello you." > > For XML-RPC are you using sgmlop or some other accelerator? If not, you > might want to consider it. > > Skip -- http://mail.python.org/mailman/listinfo/python-list