I'm trying to understand using OmniXML in our application which is going to be written in Delphi 10 Seatlle. I've scavenged the internet but all I can find are samples which obviously use another version of Delphi and/or another version of OmniXML as the statements they are using are not accepted anymore
like
var doc: IXMLDocument;
doc := CreateXMLDoc;
doc.selectSingleNode(....);
doc.SelectNodes(...);
I'm especially interested in using Selectnodes() with namespaces (where in the MSXML implementation the "SelectionNamespaces" property had to be set).
Can anyone provide me with or point me to a working example of OmnniXML in delphi 10 Seattle?