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.