Hi again,
my Source:
"""
import httplib
conn = httplib.HTTPConnection('www.python.org');
conn.request("GET", "/index.html");
answ = conn.getresponse();
print answ.status, answ.reason
>>> 200 OK
conn.close();
print "Start";
>>> Start
print answ.read();
>>>
print len(answ.read());
>>> 0
print "End";
>>> EndAnd the header states a content length of 11kBytes. What am I doin wrong? Thanks again, Chris -- http://mail.python.org/mailman/listinfo/python-list
