Faisal Abid
Faisal Abid

Reputation: 9140

Storing SSL sessions in Android

Im pretty new to SSL, however in making an SSL request, how would i prevent the "handshake" happening each time i call an HTTPS url in Android. Is it possible to just store the SSL session?

Upvotes: 0

Views: 1960

Answers (1)

Christopher Orr
Christopher Orr

Reputation: 111575

How are you making your requests? Are you seeing separate handshakes for every new request to a particular host and how frequently?

I would think that the underlying security libraries on Android, much like Sun's JSSE, would automatically cache the TLS session ID when you're working with a particular host.

Upvotes: 1

Related Questions