gpt4 book ai didi

android - 通过 Asmack 在实时服务器上建立 Openfire XMPP Connection Android 的问题

转载 作者:行者123 更新时间:2023-11-30 01:58:08 24 4
gpt4 key购买 nike

通过 Asmack 在实时服务器上建立 Openfire XMPP 连接 Android 的问题。我无法与服务器建立连接。当我将它指向本地主机时,相同的代码工作正常,但当指向实时服务器时会出现问题。

建立连接时出现异常:连接失败。服务器无响应

xmppConfig = new ConnectionConfiguration(Constants.XMPP_BASE_URL, Constants.XMPPP_PORT,Constants.XMPP_RESOURCE);
xmppConfig.setSASLAuthenticationEnabled(true);
xmppConfig.setSecurityMode(ConnectionConfiguration.SecurityMode.disabled);
if (xmppConfig == null)
throw new NullPointerException("XMPPService must be configured before it can connect!");
try {
if (xmpp == null) {
xmpp = new XMPPConnection(xmppConfig);
}
xmpp.connect();
state = State.CONNECTED;
} catch (XMPPException ex) {
Log.d(XMPPController.class.getName(), ex.toString());
}

最佳答案

问题已解决。该问题实际上存在于服务器端。一些服务器端设置阻止了开火的使用。 android端不存在这个问题。

关于android - 通过 Asmack 在实时服务器上建立 Openfire XMPP Connection Android 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31884506/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com