- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 asmack-android-8-source-4.0.6
当我尝试连接到服务器时,无论是 openFire 还是 Ejabbered,我都会得到这个异常
org.jivesoftware.smack.SmackException$NoResponseException
这是我的代码:
SmackAndroid.init(getApplicationContext());
ConnectionConfiguration conConfig = new ConnectionConfiguration(HOST, PORT);
conConfig.setDebuggerEnabled(true);
connection = new XMPPTCPConnection(conConfig);
try {
connection.connect();
Log.i("AppName", "CONNECTED TO " + connection.getHost());
}
当我调用
connection.connect();
我得到这个异常:
org.jivesoftware.smack.SmackException$NoResponseException
请注意,我已经在 asmack-android-19-0.8.10 上尝试了相同的代码,它运行良好
我想问题出在
XMPPTCPConnection
因为在 asmack-android-19-0.8.10 我使用
XMPPConnection
有什么帮助吗?
最佳答案
我发现了问题,我所做的就是添加这一行:
ConnectionConfiguration.setSecurityMode(SecurityMode.disabled);
成功连接到服务器
最后是我的配置:
ConnectionConfiguration ConnectionConfiguration = new ConnectionConfiguration(HOST, PORT);
ConnectionConfiguration.setDebuggerEnabled(true);
ConnectionConfiguration.setSecurityMode(SecurityMode.disabled);
关于android - aSmack 4.0.* XMPPTCPConnection 无法连接到 OpenFire 和 Ejabbered (SmackException$NoResponseException),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27960686/
我正在尝试使用 XMPP 服务器 (Openfire) 在我的 Android 应用程序中实现聊天(1 对 1 和群组),但是,在连接时我遇到以下异常“org.jivesoftware.smack.S
我正在使用下面的代码创建多用户组,但出现超时错误,即使我的超时错误是 10 秒也是如此。 public void createGroup() { String roomId = "Group_
我正在使用 asmack-android-8-source-4.0.6 当我尝试连接到服务器时,无论是 openFire 还是 Ejabbered,我都会得到这个异常 org.jivesoftware
环境: 服务器:OpenFire v3.9.3。 客户端操作系统:Linux 服务器操作系统:Linux Java:1.8.0_40 Smack:smack-core-4.10、smack-im-4.
我是一名优秀的程序员,十分优秀!