Mountain View
Jabber SDK API Documentation

Tutorial: Accept Invalid Certificate

Accept Invalid Certificate

Title Invalid Certificate received through "onInvalidCertificate event can be accepted. Depending on the operating system, accepted certificate is then depending on the operating system stored in:
  • [Windows OS] Enterprise trust for the current user
  • [Mac OS] Key chain of the current user.
Accepting invalid certificate is done through CertificateController.acceptInvalidCertificate method, as it is shown in the example below:

         var invalidCertificate;

         // ...
         // Invalid certificate is retrieved through "onInvalidCertificate" event.
         // ...

         cwic.CertificateController.acceptInvalidCertificate(invalidCertificate);
    
Once all invalid certificates have been accepted, telephony device will be successfully connected with CUCM.

Next

Previous