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'm new to implementing HTTPS connections in Android. Essentially, I'm trying to connect to a server using the org.apache.http.client.HttpClient. I believe, at some point, I'll need to access the application's keystore in order to authorize my client with a private key. But, for the moment, I'm just trying to connect and see what happens; I keep getting an HTTP/1.1 400 Bad Request error.

I can't seem to make heads or tails of this despite many examples (none of them seem to work for me). My code looks like this (the BODY constant is XmlRPC):

 private void connect() throws IOException, URISyntaxException{

    HttpPost post     = new HttpPost(new URI(PROD_URL));
    HttpClient client = new DefaultHttpClient();

    post.setEntity(new StringEntity(BODY));
    HttpResponse result = client.execute(post);

    Log.d("MainActivity", result.getStatusLine().toString());

}

So, pretty simple. Let me know if anyone out there has any advice. Thanks!

share|improve this question

2 Answers

This should get you started. I'm using basically the same, except with ThreadSafeClientConnManager.

SchemeRegistry schemeRegistry = new SchemeRegistry();
schemeRegistry.register(new Scheme("https", 
            SSLSocketFactory.getSocketFactory(), 443));

HttpParams params = new BasicHttpParams();

SingleClientConnManager mgr = new SingleClientConnManager(params, schemeRegistry);

HttpClient client = new DefaultHttpClient(mgr, params);
share|improve this answer
Thanks for your quick response. I actually tried a similar approach earlier with no luck; same bad request error. – harrisonlee Apr 9 '10 at 0:34
Then the problem isn't with HTTPS, it's something else. The code I pasted works for me. – synic Apr 9 '10 at 0:42
Just for clarification: it looks like you're using org.apache.http.conn.ssl.SSLSocketFactory , which is not the same as javax.net.ssl.SSLSocketFactory . Is that correct? – Dalbergia Aug 22 '11 at 20:09
@synic hi synic if you know anything about how can we validate the keystore with truststore process please let me know.. that could be helpful for me..thanks in advance... – andriod_testing Mar 2 '12 at 7:15
@Dalbergia yes it is org.apache.http.conn.ssl.SSLSocketFactory (I had to frown quite some time before realizing). – viphe Feb 13 at 19:13

I think you may try this link to make ssl connection to the server. http://www.makeurownrules.com/secure-rest-web-service-mobile-application-android.html

Cheers, Kapil

share|improve this answer
5  
This sample is dagerous and disables any security provided by SSL, the only thing that is done is encrypting the traffic but it accepts all certificats which will lead to easy man in the middle attacs. – Kolja Oct 19 '12 at 6:31

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.