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?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You need to properly escape the content for XML. In your case, the message must end up like this:

<message to="me"><body>\&lt;foobar\&gt;</body></message>

For an entity escaper, have a look into StringEscapeUtils (I assume that you're doing this in Java).

link|improve this answer
It's python but it should work the same fine! – jdborg Sep 19 '11 at 11:17
feedback

As XMPP is an XML application, I'd try replacing < with &lt;, & with &amp; and, probably not necessarily, > with &gt;.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.