Subject: SendAndAck()-Callback Never Called
Hi Alex,
I'm using SendAndAck() Method to make sure that the message arrives at server (The server(prosody) implemented XEP-198(with mod_smacks)).
Code:
XML:
Can you please help me to solve this issue?
Thanks.
I'm using SendAndAck() Method to make sure that the message arrives at server (The server(prosody) implemented XEP-198(with mod_smacks)).
Code:
- public void SendAndAckTest(Matrix.Xmpp.Client.Message message) {
- Client.SendAndAck(message, (o, e) => {
- //This is never called....
- });
- }
XML:
- SendXml:
- <message type="chat" to="+49979341@192.168.1.126" xmlns="jabber:client">
- <body>Test</body>
- <active xmlns="http://jabber.org/protocol/chatstates" />
- </message>
- SendXml:
- <r xmlns="urn:xmpp:sm:3" />
- ReceiveXml:
- <a h="34" xmlns="urn:xmpp:sm:3" />
Can you please help me to solve this issue?
Thanks.