Bad request from jabber.org

Hi

I created a MUC to jabber.org with the following code

chatRoom = new MultiUserChat(connection, mucService);
chatRoom.create(nickName);
chatRoom.join(nickName);

I then got and answer form and I set muc#roomconfig_membersonly to true. I then send an invite to all the participants

Message m = new Message(u.getJID());
DefaultPacketExtension ext = new DefaultPacketExtension(XFM_PACKET_ELEMENT_NAME, XFM_PACKET_NAMESPACE);
ext.setValue(XFM_PACKET_SESSION_ID, thisSessionId);
m.addExtension(ext);

m.setBody(“some message”);

chatRoom.invite(m, jid, “hello world”);

I enabled smack debugging. I saw the following reply from jabber.org

`

I'm playing a game 00000000-0051-0dc2-0000-012355a75c80 hello world `

I tried the same code on a local copy of openfire. Did not get the error. Any pointers appreciated.

Thanks

Regads

Chuk

I’ve figured out that that jabber.org does not support creating muc at the service level.

Regards