[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

SimpleHTTPServer send wrong Content-Length for text/* on Windows?

Christof Hoeke

2/26/2008 8:46:00 PM

hi,
I noticed while trying a simple (but still very useful) server based on
SimpleHTTP that it does report a wrong "Content-Length" for "text/*"
files if Windows line-end "\r\n" is used.

Most clients (e.g. browsers) do simply ignore a wrong Content-Length but
there are programs that do care and simply abort handling a file given
with a wrong Content-Length and not sending enough content afterwards. I
had this problem specifically with Prince-XML but that seems to be based
on curl which therefor might also be affect other products/libs.

I found this via Google:
http://mail.python.org/pipermail/python-bugs-list/2005-January/0...

It seems this is not a new bug and I somehow recall that in an older
version of Python (2.4?) it did work. But in 2.5 (also 2.5.1 and 2.5.2)
this is not working anymore.

Does anyone know if this is maybe being looked into already? I could not
find anything in the Python Bug tracker but wanted to ask here first (I
actually am not sure if I can add a bug report anyway).

Thanks!
Chris