在Websphere里尝试通过SSL连接LDAP服务器,遇到如下错误:
used by:com.ibm.jsse2.util:KIX path building failed: java.security.cert.CertPathBuilderException: PKIXCertPathBuilderImpl could not build a valid CertPath.; internal cause is:
java.security.cert.CertPathValidatorException: The certificate issued by CN=VeriSign class 3 xxxxxxx
is not trusted; internal cause is:
java.security.cert.CertPathValidatorException:
Certificate chaining error
at com.ibm.jsse2.util.h.b(h.java:86)
at com.ibm.jsse2.util.h.b(h.java:2)
at com.ibm.jsse2.util.g.a(g.java:27)
查阅了下资料,应该是在默认的trust store list里没有加入我所连接的地址。
具体方法
在IBM Websphere console界面操作如下:
1# Security > SSL certificate and key management > Key stores and certificates > NodeDefaultTrustStore > Signer certificates > Retrieve from port
填入表单项:Host\Post\Alias
点击:Retrieve signer information > Apply
2# Security > SSL certificate and key management > Manage endpoint security configurations >Inbound(CellDefaultSSLSettings) > Key stores and certificates > CellDefaultTrustStore > Signer certificates > Retrieve from port
填入表单项:Host\Post\Alias
点击:Retrieve signer information > Apply
-------------------------------------------
注:前提是CA证书已经导入到keystore里了。如果没有导入进来,请搜索导入方法。
【参考】
http://stackoverflow.com/questions/27701181/certificate-chaining-error-in-websphere
分享到:
相关推荐
### WebSphere 应用服务器 (WAS) 配置指南 #### 一、WebSphere Server 安装与基本设置 1. **下载并安装 WAS**: - 下载 `was.cd.6100.trial.base.windows.ia32.zip`。 - 解压缩后,运行 `was` 目录下的 `install...
internal cause is: java.security.cert.CertPathValidatorException: Certificate chaining error. Failed messages: javax.mail.MessagingException: Exception reading response; ``` #### 解决方案步骤 为了...
VNF Placement for Service Chaining in IP over WDM Networks
Service Function Chaining (SFC) Architecture
正文 使用Antlr+Stringtemplate生成method chaining 在这里 http://blog.csdn.net/younggift/article/details/7028932
JavaScript是Web开发中不可或缺的一部分,而ES11(ECMAScript 2018)引入了许多新特性,其中Optional Chaining(可选链)是一项重要更新。它允许开发者更安全地访问深层嵌套的对象属性,即使这些属性路径可能存在...
**标题:“Chaining of TDD”** TDD(Test-Driven Development,测试驱动开发)是一种软件开发实践,它强调在编写任何生产代码之前先编写测试用例。这种做法旨在提高代码质量,降低缺陷率,并促进更好的设计。...
方法链(Method Chaining)是JavaScript中一种常见的编程技巧,特别是在使用像jQuery这样的库时,它使得连续调用对象的方法变得更加简洁和优雅。方法链的基本原理是,每个方法在执行后返回当前对象(通常是`this`)...
INE出品的SDN视频教程
使用Antlr+Stringtemplate生成method chaining,一个不太简单的案例(1) 因为一直上传失败,猜是因为附件太小,所以包含了antlr-3.4-complete-no-antlrv2.jar和antlrworks-1.4.3.jar。对浪费你的带宽抱歉。
然而,有时我们需要在多个Action之间建立逻辑联系,Struts Chaining就是为了解决这个问题而设计的。 Struts Chaining允许开发者创建一条Action链,使得一个Action执行完毕后可以直接触发下一个Action,而无需通过...
本话题将围绕在Android中使用DES加密和解密时遇到的一个常见问题展开:`javax.crypto.IllegalBlockSizeException: last block incomplete in decryption`。 这个异常通常发生在解密过程中,当输入的数据块大小与DES...
3)....Fixed: Handling SEC_I_INCOMPLETE_CREDENTIALS in SSPI code (added searching client certificate) 4)....Fixed: Range-check error when closing WinAPI dialog EurekaLog 7.3 Hotfix 1 (7.3.1.0), 2-...
演示用法 # 1: Install in your Vue project directorynpm install --save-dev vue-template-babel-compiler# or:yarn add vue-template-babel-compiler --dev# 2: Run a script to substitute vue-template-es2015-...
Its "chaining" feature, allowing multiple operations on a single line of code, is particularly noteworthy. For instance, the code `$("div.elements").addClass("myClass").load("ajax_url").fadeIn()` ...
在提供的"FM175XX_STM32_CPU_READER_Chaining.zip"压缩包中,包含了一个基于STM32F103的DEMO程序源码,这个源码可以帮助我们理解如何将FM17550与STM32进行有效集成,实现CPU卡的读取功能。Keil MDK是常用的嵌入式...
jQuery – 链(Chaining) 通过 jQuery,可以把动作/方法链接在一起。 Chaining 允许我们在一条语句中运行多个 jQuery 方法(在相同的元素上)。 jQuery 方法链接 直到现在,我们都是一次写一条 jQuery 语句(一条...
来自datacamp的Web Scraping in Pytho的第三章节: Learn CSS Locator syntax and begin playing with the idea of chaining together CSS Locators with XPath. We also introduce Response objects, which behave ...