I'm trying to create a multi-user chat in XMPP and have some confusions.
MultiUserChat muc = new MultiUserChat(conn1, "myroom@conference.jabber.org");
muc.create("testbot");
muc.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));
This is the basic code I found on http://www.igniterealtime.org/builds/smack/docs/latest/documentation/extensions/muc.html
Here what is "myroom@conference.jabber.org" and "testbot"? What is the difference between those?