SOAP override xml tags

Sending XML data via SOAP can sometimes create problems. Sending <mydata> can by translated as a XML tag a cause
probelms at the other end of SOAP transfer. The easiest workaround is to use &lt; and &gt; instead of < and >.
To send XML <mydata> we can write &lt;mydata&gt;.