Hi!
Du musst auch das DocumentElement setzten., z.b:
Delphi-Quellcode:
.......
var xml : IXMLDoc;
haupt : IXMLNode;
begin
xml:= NewXmlDocument;
xml.Active := true;
haupt :=
xml.CreateNode('
Orgadata');
xml.DocumentElement := haupt;
xml.encoding:='
UTF-8';
xml.options:=
xml.options+[doNodeAutoIndent];
.......
end;
Gruß!