[issue6099] HTTP/1.1 with keep-alive support for xmlrpclib.ServerProxy

2009-06-20 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Superseded by issue6267. -- nosy: +loewis resolution: - out of date status: open - closed superseder: - Cumulative patch to http and xmlrpc ___ Python tracker rep...@bugs.python.org

[issue6099] HTTP/1.1 with keep-alive support for xmlrpclib.ServerProxy

2009-06-08 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: It turns out we need to deal with exceptions and clear the cached HTTPConnection if they happen. Also, we just deal with a ECONNRESET which can happen if there is a long delay between requests, and retry the request once in that

[issue6099] HTTP/1.1 with keep-alive support for xmlrpclib.ServerProxy

2009-05-25 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: I attach another patch, keepalive.patch, which includes the fixes from http://bugs.python.org/issue6096 and including a test for the keepalive mecahinsm in the test suite. Updated http://codereview.appspot.com/63144 --

[issue6099] HTTP/1.1 with keep-alive support for xmlrpclib.ServerProxy

2009-05-24 Thread Kristján Valur Jónsson
New submission from Kristján Valur Jónsson krist...@ccpgames.com: The Transport class in xmlrpclib.py was using the old httplib.HTTP class. This patch brings xmlrpclib up to date to use the HTTPConnection and HTTPSConnection classes. This allows xlmrpclib.ServerProxy to use HTTP/1.1 with