cURL / Mailing Lists / curl-users / Single Mail

curl-users

Re: keep-alive HTTP session

From: Daniel Stenberg <daniel_at_haxx.se>
Date: Thu, 16 Jan 2003 13:05:25 +0100 (MET)

On Thu, 16 Jan 2003, shlomit lisser wrote:

> ok, after some reading, sending the keep-alive header is really optional
> and it will not work if the appropriate token is not being sent.

Right, HTTP 1.1 does persistent connections by default if nothing else is
told. And curl doesn't disconnect anything on purpose unless told so.

> However according to your reply if I put two consecutive URLs in a command
> line (both from the same site) cURL will use the same connection, right?

Yes, if the server permits it.

> well that is what I'm doing, I'm sending a login request (post) to a secure
> site and then a link inside the site that should retrieve some data, and it
> looks that the connection is being closed after the first page is being
> received ( I'm getting a 'Closing connection #0'line in cURL output)

Many SSL-enabled sites work that way. Curl really can't do anything if the
server decides to close the connection, it can only obey and do its best.

> and opened again re-using the SSL session id.

Re-using the SSL session id is at least a performance gain compared to both a
new connection AND a new session id.

> The second page received specify that the user already logged in, which
> coincide with the above.

I don't follow you here.

> Also the second url should be a get request and it is sent as a post (due
> to the first request I guess).

curl has no ability to first POST and then GET using one single command line.

-- 
 Daniel Stenberg -- curl, cURL, Curl, CURL. Groks URLs.
-------------------------------------------------------
This SF.NET email is sponsored by: Thawte.com
Understand how to protect your customers personal information by implementing
SSL on your Apache Web Server. Click here to get our FREE Thawte Apache 
Guide: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0029en
Received on 2003-01-16