Trying out your product because I have the need to be able to programatically export Excel to XML withhout Excel being installed on the server.
My Excel (2010) file has an XSD schema associated, using the standard Excel XML Map features.
Now I want to export this XML Map.
I followed your example entitled "Export Excel to XML and Import XML to Excel" with following code:
- Code: Select all
Workbook workbook = new Workbook();
workbook.LoadFromFile(@"..\..\test.xls");
workbook.SaveAsXml("sample.xml");
but what I get is a OpenXML XML document, instead of an XML document that is compatible with my custom XSD schema.
Am I missing something ? Please help me out.
Thank you.
Mathieu