I've looked everywhere on the internet and while some people claim to have found the solution, it either does not work or there is no sample code to back it up.
Does anyone know how to accept a self signed cert in Java on the Android?
A code sample would be perfect.
| ||||
|
feedback
|
|
I have this functionality in exchangeIt, which connects to Microsoft exchange via WebDav. Here's some code to create an HttpClient which will connect to self signed cert's via SSL:
The EasySSLSocketFactory is here, and the EasyX509TrustManager is here. The code for exchangeIt is open source, and hosted on googlecode here, if you have any issues. I'm not actively working on it anymore, but the code should work. Note that since Android 2.2 the process has changed a bit, so check this to make the code above work. | |||||||||||||
feedback
|
|
Here's another way, without any extra classes:
| |||||||||||||
feedback
|
|
Brian Yarger's answer works in Android 2.2 as well if you modify the bigger createSocket method overload as follows. It took me a while to get self-signed SSLs working.
| |||
|
feedback
|
|
For Android HttpProtocolParams accepts ProtocolVersion rather than HttpVersion. Hope this helps.
| |||
|
feedback
|