SSL Handshake Failure For Android 2.2 Version
I am developing an application that need a certificate verification from the server. It works fine on Android 2.3 version and above, but for android 2.2 it gave me an exception : W
Solution 1:
More likely the CA that issued your server certificate is not trusted by Android 2.1. Either get a new certificate, or create a trust store that contains the CA certificate and setup your code to use it.
More info and some sample code here.
Solution 2:
It looks to me like the cert from the server is not in a form that is recognized by 2.1. You might be able to fix this by changing the certificate or cipher algorithm that you use server end.
Post a Comment for "SSL Handshake Failure For Android 2.2 Version"