I am doing a https post and I'm getting an exception of ssl exception Not trusted server certificate. If i do normal http it is working perfectly fine. Do I have to accept the server certificate somehow?
feedback
|
|
I'm making a guess, but if you want an actual handshake to occur, you have to let android know of your certificate. If you want to just accept no matter what, then use this pseudo-code to get what you need with the Apache HTTP Client:
CustomSSLSocketFactory:
FullX509TrustManager is a class that implements javax.net.ssl.X509TrustManager, yet none of the methods actually perform any work, get a sample here. Good Luck! | |||||||||||||||
feedback
|
|
This is what I am doing. It simply doesn't check the certificate anymore.
and
| |||||||||||||
feedback
|
|
While trying to answer this question I found a better tutorial. With it you don't have to compromise the certificate check. http://blog.crazybob.org/2010/02/android-trusting-ssl-certificates.html *I did not write this but thanks to Bob Lee for the work | |||||
feedback
|
|
You can also look at my blog article, very similar to crazybobs. This solution also doesn't compromise certificate checking and explains how to add the trusted certs in your own keystore. http://blog.antoine.li/index.php/2010/10/android-trusting-ssl-certificates/ | ||||
|
feedback
|
|
None of these worked for me (aggravated by the Thawte bug as well). Eventually I got it fixed with Self Signed SSL acceptance Android and Custom SSL handling stopped working on Android 2.2 FroYo | ||||
|
feedback
|
|
I don't know about the Android specifics for ssl certificates, but it would make sense that Android won't accept a self signed ssl certificate off the bat. I found this post from android forums which seems to be addressing the same issue: http://androidforums.com/android-applications/950-imap-self-signed-ssl-certificates.html | |||||||
feedback
|
|
may this thread help, but i can not tell if it works will latest API : | |||
|
feedback
|
|
This is a known problem with Android 2.x. I was struggling with this problem for a week until I came across the following question, which not only gives a good background of the problem but also provides a working and effective solution devoid of any security holes. | |||
|
feedback
|