我正在使用帐户管理员从我的第三方服务器登录我的 openfire XMPP 服务器。
我需要在特定的多用户聊天中发现可用的用户。对于“可用”,我指的是房间内所有在线用户。
我知道一种方法是连接到房间并听取用户的存在,但出于我的目的,我需要即时获取完整的列表。
可能吗?
我正在使用帐户管理员从我的第三方服务器登录我的 openfire XMPP 服务器。
我需要在特定的多用户聊天中发现可用的用户。对于“可用”,我指的是房间内所有在线用户。
我知道一种方法是连接到房间并听取用户的存在,但出于我的目的,我需要即时获取完整的列表。
可能吗?
是的,您可以为此使用 ServiceDiscovery。这是一个例子:
// Obtain the ServiceDiscoveryManager associated with my Connection
ServiceDiscoveryManager discoManager = ServiceDiscoveryManager.getInstanceFor(connection);
// Get the items of a given XMPP entity
// This example gets the items associated with online catalog service
DiscoverItems discoItems = discoManager.discoverItems("plays.shakespeare.lit");
// Get the discovered items of the queried XMPP entity
Iterator it = discoItems.getItems();
// Display the items of the remote XMPP entity
while (it.hasNext()) {
DiscoverItems.Item item = (DiscoverItems.Item) it.next();
System.out.println(item.getEntityID());
System.out.println(item.getNode());
System.out.println(item.getName());
}