Re: [PythonCE] very slow XMLRPCServer

2009-05-19 Thread David McNab
On Mon, 2009-05-18 at 16:17 -0500, Warren Lindsey wrote: > Sounds like this might be dns related. If the server is doing reverse > lookups (and subsequent timeouts) for every incoming connection it can > be quite slow. Thanks for the lead. Turns out that was exactly the problem. The address_stri

Re: [PythonCE] very slow XMLRPCServer

2009-05-18 Thread Warren Lindsey
Sounds like this might be dns related. If the server is doing reverse lookups (and subsequent timeouts) for every incoming connection it can be quite slow. You might want to add local entries the registry on the ipaq for hostname lookups. Windows mobile/ce doesn't have an /etc/hosts file, but it

Re: [PythonCE] very slow XMLRPCServer

2009-05-18 Thread Thomas Heller
David McNab schrieb: > Hi, > > I'm trying to run an XML-RPC server on my ipaq h4100, based on the > python 'SimpleXMLRPCServer', but it's ridiculously slow to process > requests. > > Turnaround for even the simplest client requests is around 30-40 > seconds. I don't know if this will help you or

[PythonCE] very slow XMLRPCServer

2009-05-17 Thread David McNab
Hi, I'm trying to run an XML-RPC server on my ipaq h4100, based on the python 'SimpleXMLRPCServer', but it's ridiculously slow to process requests. Turnaround for even the simplest client requests is around 30-40 seconds. Can anyone suggest a cause and maybe a remedy? (source code to test progr