Click here to Skip to main content
15,887,822 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
C#
rivate void SendXmppMessage(String Message, JId ReceiverJid)
{
ObjXmppClient.SendChatMessage(Message.Trim(), ReceiverJid);
}



ObjXmppClient.OnNewConversationItem += ObjXmppClient_OnNewConversationItem;
void ObjXmppClient_OnNewConversationItem(RosterItem item, bool bReceived,TextMessage msg)
{
if (bReceived)
{
//here what i have to add?
}
}
//If bReceived ==true, then message is received from other roster, or else message is sent by you to other roster. 

HI all,i need a help here i am trying to create chat app for WP8.1,using xmpp and openfire server i successfully logedin to the server.But i am stuck with the rest.
i am having this methodes but i dont know where i have to impliment? and what property setting should i do in my methodes that given above? please help me please
Posted
Updated 8-Oct-15 19:14pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900