Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been stuck with this problem "SSLPeerUnverifiedException: No peer certificate error". Turns out quite a bunch of people have had the same problem, as my research showed. It appears that most users solving their problem actually allow any certificate... and there's basically no point in using SSL if that's the solution.

Here's my config: Apache 2.2.14 Android 2.3.1/Kernel 2.6.35

I've successfully implemented two-way authentication, first using my browser (FF), then in x86 Java, thus I think my code and configuration are correct. Now I'm trying simple one-way authentication on Android but I can't seem to make it work.

What's bugging me is that the apache log spits out the "Invalid method in request \x16..." error at each Android connection, which seems to indicate that Android is trying to connect in plain HTTP.

My question is: is Android 2.3.1 or Apache 2.2.14 the problem ? Based on the fact that I breezed through normal Java without errors, I think there's an incompatibility between both.

Here's the non-Android code which I tweaked a bit for Android, but it's sort of the same:

        final KeyStore      keystore = KeyStore.getInstance("jks");                                 // load keystore containing client cert + pv key
    FileInputStream     keystoreInput = new FileInputStream(new File("/etc/apache2/ssl/CAcert/myCA/client/clientkeystore.jks"));
    keystore.load(keystoreInput, "passwd".toCharArray());

    KeyStore            truststore = KeyStore.getInstance("jks");                               // load truststore conatining CA certificate
    FileInputStream     truststoreInput = new FileInputStream(new File("/etc/apache2/ssl/CAcert/myCA/client/clienttruststore.jks"));
    truststore.load(truststoreInput, "passwd".toCharArray());

    final SchemeRegistry schemeRegistry = new SchemeRegistry();
    schemeRegistry.register(new Scheme("https", 443, new SSLSocketFactory(keystore, "passwd", truststore)));    // prepare the connection

    final HttpParams        httpParams = new BasicHttpParams();
    final DefaultHttpClient httpclient = new DefaultHttpClient(new PoolingClientConnectionManager(schemeRegistry), httpParams);
    httpclient.getConnectionManager().getSchemeRegistry();                                      // establish connection

    HttpGet httpget = new HttpGet("https://127.0.0.1:443");                                     // prepare request
    System.out.println(httpget.getRequestLine());   

Edit: I've generated all certificates and linked them to my own CA.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.