Im having problems to send a simple json message to other xmpp user using strophe. The command to create the message:
var json_stringified_msg = '{"type":"ola"}';
var reply = $msg({to: this.m_user, from: this.jid_connection, type: 'chat'}).c("body").t(json_stringified_msg);
connection.send(reply.tree());
The problem is that in the other side the client receives in the chat: {"ACTION"quot;CHANGE_MODE", "MODE"quot;KEYBOARD"}
I can't make the unescape from the other side because its a closed client.
How to send exactly the json message to the other side?
Thanks for your help.
Best Regards
