ios - 使用 XMPPFramework 和 XMPPSiFileTransfer 在 iOS 中进行文件传输
<p><p>我在使用 iOS XMPPFramework(XMPPSiFileTransfer) 实现文件传输功能时遇到了困难。我尝试了不同的方法,最后我可以发送文件传输请求并且收件人收到了请求。但即使他们接受了似乎什么也没有转移。我尝试向 Spark/Windows 机器和 iMessage/Mac 中的收件人发送请求。在 XMPPSiFileTransfer 类本身中,我发现开发人员评论如下
"<strong>当我们是发起者时则相反。我们通过调用initialFileTransferTo:withData发送请求,然后等待iq结果,si命名空间为<a href="http://jabber.org/protocol/si" rel="noreferrer noopener nofollow">http://jabber.org/protocol/si</a>,发送disco#info响应,打开SOCKS5 socket,然后等待连接的另一端开始传输。</strong>"</p>
<p>当我通过调用方法initialFileTransferTo 发送请求时,SiFileTranfer 生成以下XML:</p>
<pre><code><iq type="set" id="8FF7E518-E518-4A98-B122-914A8345C638" to="[email protected]/Spark 2.6.3" from="[email protected]/b79f10d5"><si xmlns="http://jabber.org/protocol/si" id="967DAA7A-F159-44D8-AD31-7C532AB459AD" mime-type="image/png" profile="http://jabber.org/protocol/si/profile/file-transfer"><file xmlns="http://jabber.org/protocol/si/profile/file-transfer" name="photoB29D9F41-EC41-41C8-AF6D-EA5E23FF906E.png" size="740"/><feature xmlns="http://jabber.org/protocol/feature-neg"><x xmlns="jabber:x:data" type="form"><field var="stream-method" type="list-single"><option><value>http://jabber.org/protocol/bytestreams</value></option></field></x></feature></si></iq>
</code></pre>
<p>然后我在didRecieveIq上得到了回复,如下开发者评论中提到的。</p>
<pre><code><iq xmlns="jabber:client" id="8FF7E518-E518-4A98-B122-914A8345C638" to="[email protected]/b79f10d5" from="[email protected]/Spark 2.6.3" type="result"><si xmlns="http://jabber.org/protocol/si"><feature xmlns="http://jabber.org/protocol/feature-neg"><x xmlns="jabber:x:data" type="submit"><field var="stream-method"><value>http://jabber.org/protocol/bytestreams</value></field></x></feature></si></iq>
</code></pre>
<p>当我在 didRecieveIq 中获得带有 si 命名空间的结果时,disco#info 发送如下</p>
<pre><code><iq type="get" id="12A7231B-D50A-469E-96B4-BD39278B77EF" to="[email protected]/Spark 2.6.3" from="[email protected]/b79f10d5"><query xmlns="http://jabber.org/protocol/disco#info"/></iq>
</code></pre>
<p>并尝试通过调用以下方法打开SOCKS5套接字</p>
<pre><code>- (id)initWithStream:(XMPPStream *)stream toJID:(XMPPJID *)aJid sid:(NSString *)sid
</code></pre>
<p>但我收到“SOCKS5 连接失败!”信息。我无法确定问题所在。谁能帮我解决这个问题?</p>
<p>提前致谢。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要在 TURNSocket 类 XEP-0065 中进行一些修改。
试试这个<a href="https://github.com/adamk77/XMPPFramework" rel="noreferrer noopener nofollow">xmpp</a> </p>
<p>请参阅 <a href="https://github.com/robbiehanson/XMPPFramework/issues/215" rel="noreferrer noopener nofollow">link</a> </p></p>
<p style="font-size: 20px;">关于ios - 使用 XMPPFramework 和 XMPPSiFileTransfer 在 iOS 中进行文件传输,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/21824894/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/21824894/
</a>
</p>
页:
[1]