Hi. I'm trying to create a simple XMPP client with Smack. My problem is this:
// Create a MultiUserChat using an XMPPConnection for a room MultiUserChat muc = new MultiUserChat(conn1, "myr...@localhost"); // Create the room muc.create("testbot"); // Send an empty room configuration form which indicates that we want // an instant room muc.sendConfigurationForm(new Form(Form.TYPE_SUBMIT)); When I try to create the room I get an exception saying "No response from the server", and the server is running. Does this means that creating rooms isn't yet implemented in Vysper? Thanks, and keep up the good work. Ricardo