So I'm trying to send a string like this
<message to="me"><body>\<foobar\></body></message>
The brackets seem to stop the transmission of the message, is there any way to escape the characters for example? How can I do this?
|
feedback
|
|
You need to properly escape the content for XML. In your case, the message must end up like this:
For an entity escaper, have a look into StringEscapeUtils (I assume that you're doing this in Java). | |||
|
feedback
|
|
As XMPP is an XML application, I'd try replacing | |||
|
feedback
|