如何发现当前连接的服务器是否提供MUC组件

发布于 11-16 13:38 字数 149 浏览 3 评论 0原文

是否可以以及如何发现当前服务器是否提供带有 Smack 的 MUC 组件?

我尝试让最终用户的配置尽可能简单。这样他只需输入 JID 和密码。如果属于 JID 的服务器具有 MUC 组件,则该组件应用于新的 MUC。如果服务器不提供MUC组件,则使用默认的MUC组件。

Is it possible, and then how, to discover if the current server provides a MUC component with Smack?

I try to make the configuration for the end user as easy as possible. So that he has to enter just the JID and the password. If the server belonging to the JID has a MUC component, the component should be used for new MUCs. If the server provides no MUC component, a default MUC component is used.

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

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

发布评论

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

评论(1

夏至、离别2024-11-23 13:38:58

为此,您需要使用 XEP-0030(服务发现)。 ServiceDiscoveryManager 提供了一个实现。对于从 discoveryItems 返回的每个项目,分别调用 getInstanceFor(connection)discoverItems("example.com")discoverInfo(jid)。正确的组件将实现http://jabber.org/protocol/muc 功能。

You want to use XEP-0030 (Service Discovery) for this. ServiceDiscoveryManager provides an implementation. Call getInstanceFor(connection), then discoverItems("example.com"), then then discoverInfo(jid) for each item returned from discoverItems. The correct component will implement the http://jabber.org/protocol/muc feature.

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