我正在尝试使用c#asp.net
学习XMPP聊天我成功连接到Facebook聊天并发送消息。
现在我想知道我收到其他人发送给我的回复信息。
我们是否需要将侦听器添加到我们用于发送消息的TCP套接字。
我不想使用任何XMPP库。
如果有关于如何收到消息的任何教程或良好解释,请告诉我?
我发送邮件的代码:
xml = "<message type='chat' from='-1034430826@chat.facebook.com' to='-100000960474935@chat.facebook.com' xml:lang='en' ><body>hi This offline message1</body></message>";
message = Encoding.UTF8.GetBytes(xml);
sslstream.Write(message);
sslstream.Flush(); //sending the response to the server with my parameters
myResponseAsSB.Clear();