Apologies for not being clear. For multipart upload, we break the files into chunks of 10 MB and upload each part through a separate http request. It is not done over one connection. This is to support resumable upload.
So, if we are to upload a file of size 100 MB we will have (start upload + 10 part upload + end upload request)so a total of 12 connections. We are looking to reuse same SSL context for these 12 requests. Thank you. On Apr 15, 2015 10:12 AM, "Stefan Magnus Landrø" <stefan.lan...@gmail.com> wrote: > 2015-04-15 15:40 GMT+02:00 Ryan Fulghum <ryan.fulgh...@gmail.com>: > > > We are using HTTPClient 4.3.6 to conduct Multipart File uploads over > HTTPs. > > As the file size grows bigger the upload operation becomes chatty. > > > Chatty? What exactly do you mean? > > > > Lot of > > connections (contextually related) are established in short span of time. > > > > How come? > What's the max nb connections in your client? > > > > > In a bid to reduce the time taken for SSL handshake for these request we > > want to enable SSL session reuse. > > > > 1. How to do this? Is this something that is enabled by default? > > 2. How to verify that SSL sessions are indeed being reused and handshakes > > are abbreviated? > > 3. What are the beat practices around SSL session reuse? > > > > Please advise or point to relevant documentation. > > > > Thank you. > > > > > > -- > BEKK Open > http://open.bekk.no > > TesTcl - a unit test framework for iRules > http://testcl.com >