支持 BOSH 的开源 XMPP 库

发布于 2024-11-29 21:59:19 字数 101 浏览 0 评论 0原文

有没有支持 BOSH 的开源 XMPP 库(用 c# 编写)?我检查了 AgsXMPP。 AgsXMPP 似乎没有 bosh 支持。但Matrix支持波什。 Matrix 是一款商业产品。

Is there any open source XMPP library (written in c#) with BOSH support? I checkout AgsXMPP. AgsXMPP doesn't seem to have bosh support. But Matrix supports bosh. Matrix is a commercial one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心奴独伤 2024-12-06 21:59:19

您可以尝试 SoapBox SDK Studio,它提供对 BOSH (XEP-124 )以及对 BOSH 上的 XMPP (XEP-206) 的部分支持。

如果这对您不起作用,您还可以查看 XMPP 库列表,看看是否可以任何其他 C# 库都可以满足您的需求。

祝你好运!

You can try SoapBox SDK Studio, which offers full support for BOSH (XEP-124) and partial support for XMPP over BOSH (XEP-206).

If this does not work for you, you can also check out the XMPP Library List and see if any of the other C# libraries fit your needs.

Best of luck!

离笑几人歌 2024-12-06 21:59:19

我们可以按如下方式绑定 bosh(使用 AgsXMPP 库),

        XmppClientConnection xmpp;
        xmpp = new XmppClientConnection();
        xmpp.Port = 5280;
        xmpp.Server = jidSender.Server;
        xmpp.SocketConnectionType = agsXMPP.net.SocketConnectionType.Bosh;
        xmpp.ConnectServer = "http://localhost:5280/http-bind";

We can bind the bosh (using AgsXMPP library) as follows,

        XmppClientConnection xmpp;
        xmpp = new XmppClientConnection();
        xmpp.Port = 5280;
        xmpp.Server = jidSender.Server;
        xmpp.SocketConnectionType = agsXMPP.net.SocketConnectionType.Bosh;
        xmpp.ConnectServer = "http://localhost:5280/http-bind";
韵柒 2024-12-06 21:59:19

尝试在谷歌代码上使用 Jabber net。这是开源的并且支持 BOSH。
http://code.google.com/p/jabber-net/

Try using the Jabber net on google code. This ia open source and does support BOSH.
http://code.google.com/p/jabber-net/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文