Add these two headers:


Accept-Encoding: text/html
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)


First one, because you would receive gzip data, so we want to have text/html instead.
Second, because this site doesn't accept connections from entities not identified as browsers.

Couldn't hurt to always add the header:

Connection: close

Normally the server will close the connection itsself, but I've had occasions where this doesn't happen, so adding it is always a good thing.


Gone.