How can I add "Connection: Keep-Alive" and "Keep-Alive: timeout=x, max=y" headers to a response using Apache HttpComponents ONLY if the connection is going to be persistent?

If HttpComponents decides this connection won't be persistent, it adds a "Connection: close" header after I give the response to it. I don't want a Keep-Alive header in this case.

Why I'm doing this:

Standard behavior is for HttpComponents to change nothing in the response for a persistent connection, and add "Connection: close" for non-persistent connections. This works well in most cases.

I want to have a Keep-Alive header because clients based on the standard java.net.HttpURLConnection will time out and throw away connections after 5 seconds of inactivity unless there is a Keep-Alive header in the previous response from the server. I want to use Keep-Alive to define a longer timeout than 5 seconds.

link|improve this question

feedback

1 Answer

I haven't tried this, but it seems you can code a custom 'ConnectionKeepAliveStrategy' for your httpCleint. Here is documentation HttpComponents Custom stratagey

Refer section 2.11

link|improve this answer
Yes, doing as you say is a solution for those who are writing both server and client themselves and can use HttpClient on the client side. But in this case I need for my server to send a Keep-Alive header because I don't control all the clients. – Dr.Haribo Jan 7 at 15:09
feedback

Your Answer

 
or
required, but never shown

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