user3733996
user3733996

Reputation: 11

SSL certificate is not working in android mobile,iphone and Ipad

i did a intranet application and we added a SSL certificate for that application.That certificate is working in Desktop environment but its not working in mobiles.

May i Know whats the problem in certificate?

Upvotes: 1

Views: 1113

Answers (1)

There exist three most common reasons:

  1. the certificate is issued by the CA that is unknown on the mobile device for any reason (eg. the root certificate of the chain is not listed among the trusted ones on the device).

  2. CA certificate does have one or several levels of CA certificates before the root. In this case you need to include all CA certificates in the chain (excluding the self-signed root) with your server certificate, and ensure that the server sends all of them.

  3. the certificate you use is self-signed and it was previously installed to desktop certificate storage as trusted. Such certificate of course won't be accepted on the mobile device unless/until it's installed as trusted on that device.

Upvotes: 2

Related Questions