Good morning!
I fight strongly with one problem concerning XML-files used in Navision.
We receive a xml-File that looks like this:
<?xml version="1.0" encoding="utf-8"?>
<export xsi:type="soapenc:string" xmlns:soapenc="
http://schemas.xmlsoap.org/soap/encoding/"><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Maintag>blabla<Maintag>
</export>
Now, I need to use this Input in Navision (<Maintag>blabla</Maintag>) to create e.g. some orders. We transform these escape-Characters at the moment manually, but unfortunately specials signs like the german Umlaute are also escaped and it would be a hard work to do it all manually.
Does anyone know a solution? Unfortunately we can't influence the XML-File we receive. We already tried the XMLDoc.loadXML Method und the load-Method but this all did not work or did not help.
Thanks a lot in advance

Jut
Comments
Is it through an XML Port, XMLDOM, or some other method.
I haven't checked XML Ports but the XMLDOM automatically decodes the file for you.
With this code:
The message for me correctly shows the decoded < and > and the other characters remain as is.