I'm using HttpClient on Android to connect to https://someUrl.com/somePath. The problem is that the site's certificate is for *.someUrl.com, not someUrl.com, so I get an SSLException. Lame on the part of the site, yes, but unless I can get it fixed, I'm stuck. Is there a way I can get HttpClient to relax and accept the certificate?
|
This is my (edited) solution:
It has the advantage of not changing the default behavior unless there is a wildcard domain, and in that case it revalidates as though the 2 part domain (e.g., someUrl.com) were part of the certificate, otherwise the original exception is rethrown. That means truly invalid certs will still fail. |
|||||
|
|
The BouncyCastle on Android is too old and it doesn't recognize wildcard certificate. You can write your own X509TrustManager to check for wildcard. or you can disable certificate check altogether if you can accept the risk. See this question, http://stackoverflow.com/questions/1217141/self-signed-ssl-acceptance-android |
|||
|
|
If it wants |
|||||||||
|
|
The solution that worked for me is described at http://stackoverflow.com/questions/1217141/self-signed-ssl-acceptance-android and http://stackoverflow.com/questions/2899079/custom-ssl-handling-stopped-working-on-android-2-2-froyo |
|||
|
|
|
if you use a WebView just call
to ignore SSL errors |
|||
|
|