The multi-user chat room entity alias is set in Cisco IM&P. You can discover what it is in Javascript.
Step through the entitySet contained in the client. Text conferencing servers should show up with a Display Name of "Text Conferencing". Find that one, and grab the JID and use that to set up your multi-user chat room.
client.entitySet.each(function(entity){ // Display domain of each text conferencing servers if(entity.getDisplayName() === 'Text Conferencing') { console.log(entity.jid.toString()); } });
Comments
0 comments
Please sign in to leave a comment.