1

当我尝试在企业管理器中解析 wsdl 时,出现以下错误。我该如何解决。

无法解析 WSDL 文档。解析 WSDL 位置时出现以下错误 - WSDLException: faultCode=PARSER_ERROR: Failed to read wsdl file at: "https:/xxx?WSDL", cause: javax.net.ssl.SSLHandshakeException . :javax.net.ssl.SSLHandshakeException:sun.security.validator.ValidatorException:PKIX 路径构建失败:sun.security.provider.certpath.SunCertPathBuilderException:无法找到请求目标的有效证书路径

4

1 回答 1

2

确保将所需的 CA 证书添加到所需的 CERT db 文件中,例如使用 JDK 的 App/Web 服务器是否应该是 ${JAVA_home}/jre/lib/security/cacerts。

您可以交叉检查您的证书是否已添加。keytool -list -keystore${JAVA_home}/jre/lib/security/cacerts

密钥库文件路径可能因您的服务器配置而异。

于 2018-03-08T13:07:11.520 回答