我正在使用以下代码向房间发送消息:
[xmppRoom sendMessageWithBody:messageStr];
xmppRoom是我目前的房间。这是发送消息:
SEND: <message to="ios@conference.localhost" type="groupchat"><body>Hey man are you there </body></message>
并收到消息:
RECV: <message xmlns="jabber:client" to="user1@localhost/2epj2q8l5t" type="groupchat" from="ios@conference.localhost/user1"><body>Hey man are you there </body></message>
我正在向房间发送消息,但消息会回复给我,它不会传递给其他用户,是的,我可以从房间成功收到消息。
那有什么问题?