So I have an app that make several requests to the server on a button click. I noticed there's HTTPS handshake overhead for every single call.
How can I re-use the connection in this case so there's no need of handshake overhead on each back-to-back request?
POST https://myserver:8080/Service/GetContact HTTP/1.1
Accept: text/html,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/json
Content-Length: 113
Host: myserver:8080
Connection: Keep-Alive
I thought Connection: Keep-Alive
is suppose to take care of that for me?