iOS:XMPP重新连接旧学校SSL连接

iOS:XMPP重新连接旧学校SSL连接,第1张

概述XMPPFramework为“意外断开连接”提供名为XMPPReconnect的扩展,并自动重新连接流. 这适用于正常连接的设置: [xmppStream connect:&error][xmppStream setHostPort:5222];allowSelfSignedCertificates = NO;allowSSLHostNameMismatch = NO; 但不适用于此Old XMPPFramework为“意外断开连接”提供名为XMPpreconnect的扩展,并自动重新连接流.

这适用于正常连接的设置:

[xmppStream connect:&error][xmppStream setHostPort:5222];allowSelfSignedCertificates = NO;allowSSLHostnameMismatch = NO;

但不适用于此old School SSL连接:

[xmppStream oldSchoolSecureConnect:&error][xmppStream setHostPort:5223];allowSelfSignedCertificates = YES;allowSSLHostnameMismatch = YES;

错误的libxmlErrorDomain作为错误代码4,描述文档为空,被连续抛出,

有时,错误GcdasyncSocketErrorDomain作为错误代码4与描述读取 *** 作超时也被抛出.

请建议我让XMPpreconnect在old School SSL连接上工作的方法.

附: XMPP服务器是openfire和用于身份验证的PLAIN机制.

解决方法 我不认为XMPPFramework的重新连接扩展知道旧学校的ssl连接.恕我直言,你将不得不修改’XMPpreconnect.m’函数’maybeAttemptReconnectWithReachabilityFlags:’做类似的事情:

if(self.usesLegacyConnect)    [xmppStream oldSchoolSecureConnect:nil];} else {   [xmppStream connect:nil];}
总结

以上是内存溢出为你收集整理的iOS:XMPP重新连接旧学校SSL连接全部内容,希望文章能够帮你解决iOS:XMPP重新连接旧学校SSL连接所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1034818.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存