Hi,
I am having troubles loading a document with Aspose.Words. The document contains custom xml that doesn’t seem to be loading properly with the document.
Our document is created in word, we are using Aspose to convert it to pdf.
In the header the data we have changed is not displayed when loading with Aspose. It displays the data we had before changing the document.
Word is able to load the document correctly, but in Aspose it is missing our new data.
We’ve seem from the warningcallback that there are some things that are not supported, but we have not seen anything relevant to our problem here.
Import of element ‘hdrShapeDefaults’ is not supported in Docx format by Aspose.Words.
Import of element ‘rsids’ is not supported in Docx format by Aspose.Words.
Import of element ‘doNotAutoCompressPictures’ is not supported in Docx format by Aspose.Words.
Import of element ‘shapeDefaults’ is not supported in Docx format by Aspose.Words.
Import of element ‘decimalSymbol’ is not supported in Docx format by Aspose.Words.
Import of element ‘listSeparator’ is not supported in Docx format by Aspose.Words.
Import of element ‘docId’ is not supported in Docx format by Aspose.Words.
Tag with name ‘effectStyleLst’ is not supported.
Tag with name ‘objectDefaults’ is not supported.
Tag with name ‘extraClrSchemeLst’ is not supported.
Here is our current code for loading the document.
var loadOptions = new Aspose.Words.LoadOptions();
loadOptions.LoadFormat = Aspose.Words.LoadFormat.Docx;
loadOptions.WarningCallback = new WarningCallbackClass();
var doc = new Aspose.Words.Document(stream, loadOptions);