I have an internal REST API i want to access from the Web Services Connector, but the hostname is on the .local domain (org internal). How do i add our CA certificate to the local trust store used by the HTTPS client so that the TLS connection is allowed?
Error Received:
Exception occurred in Test Connection.Url: https://[blah].local:8089, Message: 0 : javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target, HTTP Error Code: 0
I believe this is because the target HTTPS server presents a certificate signed by the [blah].local (our org) internal CA, but looks like the connector does not trust this. Normal solution would be to add the CA cert to the local trusted certs,but no documentation on how to do this here.