gpt4 book ai didi

java - Smack Android 客户端无法连接 ejabberd 服务器

转载 作者:行者123 更新时间:2023-12-02 11:47:23 26 4
gpt4 key购买 nike

我已经被这个问题困扰了 6 个多小时,我在互联网上检查了数百个解决方案,但没有一个对我有用。

我正在通过 Smack 4.2 实现 XMPP Android 客户端,以下是我的 gradle 依赖项:

compile "org.igniterealtime.smack:smack-android-extensions:4.2.0"
compile "org.igniterealtime.smack:smack-tcp:4.2.0"

我已在 list 中声明许可:

<uses-permission android:name="android.permission.INTERNET" />

这是我连接到服务器的代码

private class LoginTask extends AsyncTask<UserProps, String, String> {

@Override
protected String doInBackground(UserProps... props){
try {
InetAddress addr = InetAddress.getByName("192.168.100.5");
HostnameVerifier verifier = new HostnameVerifier() {
@Override
public boolean verify(String hostname, SSLSession session) {
return false;
}
};
DomainBareJid serviceName = JidCreate.domainBareFrom("rabta");
XMPPTCPConnectionConfiguration config = XMPPTCPConnectionConfiguration.builder()
.setUsernameAndPassword(props[0].getUser(), props[0].getPass())
.setHostAddress(addr)
.setXmppDomain(serviceName)
.setHostnameVerifier(verifier)
.setSecurityMode(ConnectionConfiguration.SecurityMode.disabled)
.setPort(5222)
.setDebuggerEnabled(true)
.build();

AbstractXMPPConnection conn = new XMPPTCPConnection(config);
conn.connect();
if(conn.isConnected()) {
Log.w("app", "connected--------------------------");
}
conn.login();

if(conn.isAuthenticated()) {
Log.w("app", "authenticated----------------------");
}
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (SmackException e) {
e.printStackTrace();
} catch (XMPPException e) {
e.printStackTrace();
}
return "";
}
@Override
protected void onPostExecute(String result) {
}
}

其中192.168.100.5是安装了ejabberd的Windows 10机器的ipv4地址。 rabta 是我在安装时指定的服务器名称,而不是 localhost。我的服务器不在实时 IP 上。我的客户端和服务器都在同一个 WiFi 网络上。

org.jivesoftware.smack.SmackException$ConnectionException: The following addresses failed: 'null:5222' failed because: /192.168.100.5
exception: java.net.ConnectException: failed to connect to /192.168.100.5 (port 5222) after 30000ms: isConnected failed: ECONNREFUSED (Connection refused)
01-05 05:16:19.757 18413-18591/com.rabta.rabta W/System.err: at org.jivesoftware.smack.tcp.XMPPTCPConnection.connectUsingConfiguration(XMPPTCPConnection.java:617)

启动 ejabberd 时收到的消息

By default, the ejabberd Web Admin interface is enabled. You should be able to connect to the admin interface and log in with the user admin@rabta and the password you defined during the installation.
Users can connect to your server 'rabta' with any Jabber/XMPP
The name of the current ejabberd node is ejabberd@localhost.

登录的用户凭据:用户名user1@rabta密码pass最后是 ejabberd.yml

hosts:
- "rabta"
listen:
-
port: 5222
ip: "::"
module: ejabberd_c2s
starttls: true

在服务器计算机上,我拥有管理员权限,并且所有防火墙都已关闭。如果有人能帮助我,我会很高兴。提前致谢

最佳答案

简短回答:使用 Linux 而不是 Windows

经过多次尝试,我发现我的客户端或服务器没有任何问题。问题出在 Windows 上。

当我在 Windows 中检查端口及其监听进程时,我可以看到 port:5222 正在被 Erlang 监听,但是当我从外面扫描端口我发现端口已关闭。尝试了防火墙和网络的所有技巧,但没有成功。

Windows切换到Linux,一切都很顺利!

关于java - Smack Android 客户端无法连接 ejabberd 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48105605/

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