vote up 0 vote down star

If you run this command:

$ curl -XHEAD -i -H "User-Agent: myuseragent" http://www.google.com
HTTP/1.1 302 Found 
... snip ...
Server: gws
Content-Length: 222
X-XSS-Protection: 0

you will notice immediately that the curl command hangs. (I am running this in cygwin/VISTA)

If you run it against twitter or facebook, curl terminates immediately. I suspect it's because twitter & facebook returns Connection: close.

In my Android 1.5 cupcake app, I am running the same command using the HttpClient framework. And I notice that the connection hangs but terminates after the timeout (Thank god for Http 4.0 !! ).

Is there an option to set in HttpClient to terminate once I've received the relevant HEAD http headers ? Thanks.

flag

78% accept rate

1 Answer

vote up 1 vote down check

Have you tried adding the "Connection: close" header to your request? That should tell the server that you don't want a persistent connection.

link|flag
Will try that. I thought Connection: Close is sent only from server to client. – Jacques René Mesrine Nov 5 at 11:22
It works! Thanks a lot. – Jacques René Mesrine Nov 5 at 11:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.