当前位置:  开发笔记 > 编程语言 > 正文

如何使用t3s连接到Weblogic JMS队列?

如何解决《如何使用t3s连接到WeblogicJMS队列?》经验,为你挑选了1个好方法。

我想要在独立应用程序中传递这些行中的最后一行而不抛出任何异常:

    Properties props = new Properties();
    props.setProperty("java.naming.factory.initial",
                      "weblogic.jndi.WLInitialContextFactory");
    props.setProperty("java.naming.provider.url",
                      "t3s://localhost:9002");
    props.setProperty("java.naming.security.principal",
                      "");
    props.setProperty("java.naming.security.credentials",
                      "");
    Context ctx = new InitialContext(props);

...但我在异常中获得此信息:

Warning Security BEA-090542 Certificate chain received from localhost - 127.0.0.1 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.

所以,我使用这个命令为ca创建了一个密钥库:

keytool -keystore client.jks -importcert -file cacert.pem

...并使用属性weblogic.security.TrustKeyStore = client.jks引用它

这仍然不起作用,很可能是因为我没有为密钥库提供密码.我错过了什么?我该如何提供这个密码?(或者,如何在不设置密码的情况下创建密钥库?)



1> davidi..:

差不多两个月后,我回到了这个问题.找到此链接后,我发现这有效:

        System.setProperty("weblogic.security.SSL.ignoreHostnameVerification","true");
        System.setProperty("java.protocol.handler.pkgs", "weblogic.net");
        System.setProperty("weblogic.security.TrustKeyStore","CustomTrust");
        System.setProperty("weblogic.security.CustomTrustKeyStoreFileName", "");
        System.setProperty("weblogic.security.CustomTrustKeyStorePassPhrase",""); 
        System.setProperty("weblogic.security.CustomTrustKeyStoreType","JKS");

我只是使用系统属性.

推荐阅读
php
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有