hexadecimal 0x40

#14712

This higihlights one of the problems of building your own Xml usng strings rather than an Xml parser.
When you assign a string value to a node using a parser it should be automatically excaped.
i.e. John Walker<[email protected]> becomes John <return>Walker&lt;[email protected]%gt;</return>

This will makes handling the Xml much easier than using CDATA
To do this:
[code:1:aad87f017b]xDoc.LoadXml(\"<ns0:returnValue xmlns:ns0=’http://LeadMgmtEmail.returnValue’><return/></ns0:returnValue>\");
xMessage = xDoc;
xpath(xMessage, \"/*[local-name()=’returnValue’ and namespace-uri()=’http://LeadMgmtEmail.returnValue’]/*[local-name()=’return’ and namespace-uri()=”]\") = Email(POP3.From);[/code:1:aad87f017b]