[issue1214] Timeout in CGIXMLRPCRequestHandler under IIS

2009-06-28 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: This has been fixed in 2.6 and 3.x. Closing. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue1214] Timeout in CGIXMLRPCRequestHandler under IIS

2007-12-03 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Looks good to me. I updated the patch to use .get() with a default value instead of a if-statement with .has_key(). -- nosy: +alexandre.vassalotti priority: -> normal Added file: http://bugs.python.org/file8869/check-content-length.patch

[issue1214] Timeout in CGIXMLRPCRequestHandler under IIS

2007-09-27 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1214] Timeout in CGIXMLRPCRequestHandler under IIS

2007-09-27 Thread steenie
New submission from steenie: Using CGIXMLRPCRequestHandler results in a timeout if running behind Internet Information Server/CGI. Maybe there is no eof on sys.stdin under IIS and python continues to read even if there is no more data available. The same runs without problems under Apache/CGI. Re