【发布时间】:2011-04-18 21:51:47
【问题描述】:
大家好。我刚刚开始在 Java 中使用 XMPP,包括服务器端和客户端。 在服务器端,我使用的是 Apache Vysper 0.7,在客户端,我使用的是 Ignite Smack 3.1.0 我正在使用来自 apache vysper 演示页面的小型 XMPP 嵌入式服务器,并使用源代码附带的 TLS 证书:
XMPPServer server = new XMPPServer("localhost");
StorageProviderRegistry providerRegistry = new MemoryStorageProviderRegistry();
AccountManagement accountManagement = (AccountManagement) providerRegistry.retrieve(AccountManagement.class);
Entity user = EntityImpl.parseUnchecked("user@localhost");
accountManagement.addUser(user, "password");
server.setStorageProviderRegistry(providerRegistry);
server.addEndpoint(new TCPEndpoint());
server.setTLSCertificateInfo(new File("bogus_mina_tls.cert"), "boguspw");
server.start();
System.out.println("Vysper server is running...");
问题在于这不是正确/有效的证书。如果我使用 pidgin 测试我的服务器,则会弹出一个警报窗口并告诉我证书无效,并会出现一个按钮,以防我想为此添加例外。
我想要用 Smack api 做同样的事情,但我不知道怎么做。
在我的 smack api 上,我正在使用这样的东西:
ConnectionConfiguration config = new ConnectionConfiguration("localhost",5222, "localhost");
config.setSASLAuthenticationEnabled(false);
connection = new XMPPConnection(config);
connection.connect();
connection.login(userName, password);
原来如此。我需要做什么来接受或拒绝无效证书? 感谢您的帮助。
【问题讨论】: