0

Is there any way to get list of users/account registered on server? Now I'm getting roster, but I would like to get not only roster but also every user jid registered to server. - openfire server - Qt - qxmpp library

never_ever
  • 185
  • 1
  • 4
  • 13
  • Possibly just adding noise here.. but maybe [this XEP](http://xmpp.org/extensions/xep-0133.html) will clue you in? A total stab in the dark on my part. – Son-Huy Pham Feb 26 '14 at 17:53
  • But if it will work for not-admin accounts? Because I want to get list by not-admin user. I would like to have a possibility to see all users, when for example I want to add some users to my contact list. – never_ever Feb 27 '14 at 07:24

1 Answers1

0

I haven't tried with qxmpp, but my openfire installation has a plugin for XEP-0055: Jabber Search. Using miranda IM, I can find all contancts in the server by searching for * (search service is search.my.xmpp.domain). I don't know whether this plugin was part of the original installation or I had to install it separately.

Doing a quick search, qxmpp seems not to have an existing xep-0055 implementation, so you will either have to write one by yourself or maybe you can use the implementation linked in this post on Google Groups.

Chris
  • 1,508
  • 1
  • 11
  • 30
  • Yes, I have already found that XEP-0055 doesn't have an implementation in qxmpp, so I do it myself. But thanks – never_ever Apr 23 '14 at 12:34