Websphere 6.1 Ldap 活动目录
我最近从 websphere 5.1.2 升级到 websphere 6.1 服务器。我有一些 ldap 代码来查询活动目录,在 5.1.2 上运行良好,但现在在 6.1 上不起作用。
我收到以下异常:
Caused by: java.security.NoSuchAlgorithmException: Mode: SSL not implemented
这是因为 IBM 使用的安全性与 ActiveDirectory 不兼容吗?如果没有,有没有办法强制它使用以前的安全流,以便我可以继续进行这些调用?
- 编辑 - 我尝试将 sun JSSE jar 添加到应用程序服务器和部署的项目的路径中。我还更新了安全策略以包括 sun 的实施。这仍然不起作用..有帮助吗?
I have recently upgraded from websphere 5.1.2 to websphere 6.1 server. I had some ldap code to query active direcotry that worked fine on 5.1.2 but now does not work on 6.1.
I get the following exception:
Caused by: java.security.NoSuchAlgorithmException: Mode: SSL not implemented
Is this because the security IBM is using is not compatible with ActiveDirectory? If not is there a way to force it to use the previous security stream so I can continue to make these calls?
-- EDIT --
I have tried to add the sun JSSE jars to the path of the application server and the deployed probject. Also I updated the security policy to include sun's implementation. This still doesn't work..Any Help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很愚蠢,正在使用旧版本的jsse.jars。我将它们从 jdk1.5 安装复制到 websphere/lib/ext 目录,它现在似乎可以工作。
I am stupid and was using old version of jsse.jars. I copied them from my jdk1.5 install to the websphere/lib/ext directory and it seems to be working now.