I need to get a list of MUC's in a XMPP server (OpenFire). I have read about XEP 0030 and service discovery, but can not find documentation or examples about implementing it with xmpppy.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Look in xmpp/features.py, and try code like this:

for i in discoverItems(conn, jid.getDomain()):
    (ids, features) = discoverInfo(conn, i.jid)
    if NS_MUC in features:
        print i.jid

(warning: completely untested)

link|improve this answer
Thank you very much !!! It worked. I had to replace jid.getdomain() with the name of the service, in my case conference.servername and I get a dictionary - i with keys - jid, name . – Joleng May 20 '11 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.