通过 Asmack 在实时服务器上建立 Openfire XMPP 连接 Android 的问题

Issue with establishing Openfire XMPP Connection Android on live server via Asmack

通过 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 端不存在此问题。