@debtpaypro
After the initial investigation, we found that Aspose.Words Cloud API is not supporting XML shortcuts for object declaration like
<customer ID="1", Name="Name" ...</>
So as a workaround, it should be changed to a full declaration like
<?xml version="1.0" encoding="utf-8"?>
<customers>
<customer>
<Name>John Ben Jan</Name>
<ID>1</ID>
<Domain>History</Domain>
<City>Boston</City>
</customer>
<customer>
<Name>Lisa Lane</Name>
<ID>2</ID>
<Domain>Chemistry</Domain>
<City>LA</City>
</customer>
<customer>
<Name>Dagomir Zits</Name>
<ID>3</ID>
<Domain>Heraldry</Domain>
<City>Milwaukee</City>
</customer>
<customer>
<Name>Sara Careira Santy</Name>
<ID>4</ID>
<Domain>IT</Domain>
<City>Miami</City>
</customer>
</customers>
However, we are working for a fix to support both types of declaration and will update you as soon as it is published.