I am trying to convert a microsoft xml file into excel spreadsheet.
the xml files starts like this.
<?xml version="1.0" encoding="UTF-8"?><?mso-application progid="Excel.Sheet"?><Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:x2="http://schemas.microsoft.com/office/excel/2003/xml" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:z="#RowsetSchema" xmlns:udc="http://schemas.microsoft.com/data/udc" xmlns:udcs="http://schemas.microsoft.com/data/udc/soap" xmlns:udcxf="http://schemas.microsoft.com/data/udc/xmfile" xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40"><OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office"><DownloadComponents/></OfficeDocumentSettings>
When i tried to use xml parse tool it errors out saying "Invalid character reference at Line 1". If i check Ignore XML errors and continue it gives error as "No Root element". I then checked Return Root element and it gives error as "No valid XML to Parse".
Anyone had experience with converting MXML to xlsx?