Where is the documentation for muc#roomconfig_? properties

I am trying to create a room dynamically and setting a password, I need to figure out what the property name is e.g muc#roomconfig_

Where can I find this information?

// Code snippet

MultiUserChat muc1_cust = new MultiUserChat(xmppConnection, this.encryptedCustID + “@conference.localhost”);

muc1_cust.create(this.encryptedCustID + “_SND”);

Form form = muc1_cust.getConfigurationForm();

Form answerForm = form.createAnswerForm();

// Is this right?

answerForm.setAnswer(“muc#roomconfig_password”, “somePassword”);

Hate guessing

Thanks

Hey mariohc79,

MultiUserChat is an implementation of url=http://www.jabber.org/jeps/jep-0045.htmlJEP-45: Multi-User Chat[/url]. To find the list of valid fields of the room configuration form you can follow url=http://www.jabber.org/jeps/jep-0045.html#registrar-formtype-ownerthis link[/url].

Regards,

– Gato

Thank you, for very useful doc