Internal error - Node type 'FieldStart' is not supported in bookmark processor

Hello, when trying to prepare my documents for the editor (conversion to html), i receive the following error: 'Internal error - Node type ‘FieldStart’, that is an instance of type ‘Aspose.Words.Fields.FieldStart’, is not supported in bookmark processor, that was initiated by the bookmark ‘bmAuthor’. This only happens for documents based on our company template.
Other documents work just fine. Can somebody assist me in what is exactly the problem and how i would be able to fix this (by editing the template)? Thank you

1 Like

@Verthosa,

Can you please share the problematic file with us (using that issue could be reproduced)?
Aside this, please tell:

  • Are you evaluating GroupDocs.Editor API for .NET platform or Java?
  • API version that you are evaluating (19.10, 19.11)
  • Sample code

Sure,
I’m using the API for .NET, version 19.11 using following code:

using (GroupDocs.Editor.Editor editor = new GroupDocs.Editor.Editor(filename))
            {
                EditableDocument editDocument = editor.Edit();

                string bodyContent = editDocument.GetBodyContent();

                foreach (var image in editDocument.Images)
                {
                    bodyContent = bodyContent.Replace(image.FilenameWithExtension, "data:image/" + image.Type.FileExtension.ToLower() + "; base64," + image.TextContent);
                }

                return bodyContent;
            }

The code already breaks on the editor.Edit() method. Using the following file: https://we.tl/t-8uQJmwOHif

FYI: it also fails using the Free Apps & On Premise Solution for Document Editing

1 Like

@Verthosa,

This issue is reproduced at our end. Hence, it has been logged in our internal issue tracking system with ID : EDITORNET-1418. We are now investigating it. As there is any update, you’ll be notified.

1 Like

@Verthosa,

Your reported issue EDITORNET-1418 is now fixed in API version 19.12.

1 Like