Reputation: 169
I am sending a message to jabber as
Message msgMultipleChat = new Message(to);//,Message.Type.chat);
msgMultipleChat.setBody(inputChatText);
msgMultipleChat.setType(Message.Type.groupchat);
msgMultipleChat.setFileType("text");
msgMultipleChat.setFile("");
//msgMultipleChat.setFriendName(userIds);
msgMultipleChat.setFrom(userIds);
msgMultipleChat.setGroupId(mGroupId);
if(BizproConnection.mXMPPConnection.getHost()!=null ) {
BizproConnection.mXMPPConnection.sendPacket(msgMultipleChat);
}
I am not able to recieve it but when the Message type is chat i am able to recieve it why is it so
Upvotes: 0
Views: 549