Reputation: 11
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
Reputation: 46050
There exist three most common reasons:
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).
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.
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