I created a XML file for a third party with C$XML. This XML file is not accepted because:
1. my elements may contain &, ', < or >. In my XML file this is converted to &, &apos or >. This is not accepted by this third party. When I put the data between
<![CDATA[ ]]> and use those signs, the XML file is accepted. Is there an OP-CODE to automatically put the data between <![CDATA[ ]]> and not convert those signs in C$XML?
2. Empty elements are in my XML file like <Val/>. This is not accepted by this third party. They want the empty elements represented like <Val></Val>. Is there a way to do this automatically with C$XML?
Emmie