Host: header

Penny Y. pylists at arcor.de
Mon Apr 14 00:04:40 EDT 2008


Hello,

I have a problem with a request url,for example, I have the code below,

import httplib

try:
    conn = httplib.HTTPConnection("192.168.1.1")
    conn.request("GET", "/")
    r1 = conn.getresponse()
    if r1.status == 200:
        result = 0
except Exception:
    result = -1


but the server on 192.168.1.1 accept virtual host request only.
That's to say, I need to specify a "Host:" header in the request.
How to do it? thanks.




More information about the Python-list mailing list