When API Manager's "API Portal" listener SSL certificate is issued by a self-signed certificate, we get a com.axway.apim.lib.AppException: Can't login to API-Manager
caused by a
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
My guess is this has something to do with the Apache http client settings, more precisely the TrustSelfSignedStrategy.
Unless it is expected to be implemented like that, maybe a TrustAllStrategy would work better.
When API Manager's "API Portal" listener SSL certificate is issued by a self-signed certificate, we get a
com.axway.apim.lib.AppException: Can't login to API-Manager
caused by ajavax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
My guess is this has something to do with the Apache http client settings, more precisely theTrustSelfSignedStrategy
. Unless it is expected to be implemented like that, maybe aTrustAllStrategy
would work better.