我正在尝试使用 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();