I know this is asked many times on SO, but I still have some random errors from time to time.
My certificate is from Gandi (Gandi Standard SSL CA) and The USERTRUST Network.
From Android, rarely, I get SSLNoPeerCertificate errors. Here is my exact code:
HttpParams httpParams = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParams, Constants.TIMEOUT_SECOND * 15);
HttpConnectionParams.setSoTimeout(httpParams, Constants.TIMEOUT_SECOND * 30);
SchemeRegistry schemeRegistry = new SchemeRegistry();
SSLSocketFactory.getSocketFactory().setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);
schemeRegistry.register(new Scheme("https", SSLSocketFactory.getSocketFactory(), 4242));
DefaultHttpClient httpClient = new DefaultHttpClient(new SingleClientConnManager(httpParams, schemeRegistry), httpParams);
HttpGet httpGet = new HttpGet(/* HTTPS url */);
HttpResponse httpResponse = httpClient.execute(httpGet);
final int statusCode = httpResponse.getStatusLine().getStatusCode();
- My application is running on port 4242, using Nginx + uWSGI.
- USERTRUST is in Android 2.3+ trusted certificate authorities as ID 55.
- This code uses
org.apache.httppackages.
I got this code by exploring:
- 'No peer certificate' error in Android 2.3 but NOT in 4 (USERTRUST is trusted)
- Yet Another SSLPeerUnverifiedException: No peer certificate error (unanswered)
- "No peer certificate" android application (nothing usefull)
- Android SSL - No Peer Certificate (I use SchemeRegistry)
- Android HTTPClient "No Peer Certificate" (unanswered)
- Problems with https (No peer certificate) in android
But even with the SchemeRegistry, it sometimes fails.
My last hope is to try to use Trusting all certificates using HttpClient over HTTPS's code...
curl -3(to use SSLv3, which doesn't support SNI) for example. – Bruno Dec 19 '12 at 16:52curl -I -3. I also removed ALLOW_ALL_HOSTNAME_VERIFIER, but some betatesters reports errors from time to time. What is happening? – shkschneider Dec 19 '12 at 17:41