Example of Asserted XML vs Exported XML

The Platform will clean up configurations asserted by asset-based file upload or by API and apply standard XML formatting to the configuration before exporting. This clean up process includes the removal of namespace and type declarations (references to XSD defined types), XML processing instructions, comments, and white space in between elements. The final XML is formatted for printing.

Asserted XML

<?xml version="1.0"? encoding="UTF-8" standalone="yes"?>

<Config xmlns:foo=”http://axeda.com/schemas/foo/” xmlns:bar=”http://axeda.com/schemas/bar/”>

<!-- Begin the Hardware Section -->

<foo:Hardware>

<foo:PowerSupply/>

 

<foo:MotherBoard position=”top”>

<bar:Make>Asus</bar:Make>

<bar:Model>123</bar:Model>

<bar:Version>1.05</bar:Version>

</foo:MotherBoard>

</foo:Hardware>

</Config>

 

Exported XML

<Config>

<Hardware>

<MotherBoard position=”top”>

<Make>Asus</Make>

<Model>123</Model>

<Version>1.05</Version>

</MotherBoard>

<Hardware>

</Config>