Try OpenEdge Now
Working with XML
Reading and Writing XML with the Document Object Model (DOM)
:
Reading XML input into ABL
:
Loading an XML file
:
Loading an XML file from a LONGCHAR
Loading an XML file from a LONGCHAR
An XML file can be read from a
LONGCHAR
as the following code fragment demonstrates:
DEFINE VARIABLE longstring AS LONGCHAR NO-UNDO.
. . .
hDoc:LOAD("LONGCHAR",longstring,FALSE).
. . .