Hallo!
In my Database, an Agent exports an Document with DXLExport than I want to change some Attributes with the DomParser and Import the Result wit the DXLImporter!
MY Question is:
I change some attributes with this code:(for example)
a.AttributeValue = "1.0021"
but after the import the attribute dont change!
Why??
My import code:
Dim importer As NotesDXLImporter
Set importer = session.CreateDXLImporter(outputstream, db)
importer.DocumentImportOption = DXLIMPORTOPTION_UPDATE_ELSE_CREATE
importer.DesignImportOption = DXLIMPORTOPTION_REPLACE_ELSE_CREATE
importer.ExitOnFirstFatalError = True
Call importer.Process
I hope somebody can help me!