Jeevan Roy dsouza
Jeevan Roy dsouza

Reputation: 673

Android will run only on CA Root Certificates?

I have created self signed certificate and installed in a server.To enable https in android is it required ca root cerificate.? Android won't run in self signed certificates?

Upvotes: 0

Views: 85

Answers (1)

Gal Ben-Haim
Gal Ben-Haim

Reputation: 17803

The documentation at http://developer.android.com/training/articles/security-ssl.html#SelfSigned clearly say that HttpURLConnection won't work with a self signed certificate.

They also imply that you can create your own TrustManager as a workaround.

Upvotes: 1

Related Questions