Difference between revisions of "Talk:XML Tutorial"

From Free Pascal wiki
Jump to navigationJump to search
(New page: The example routines, taken "as is", does not compile. Need to tell what units are needed in the '''uses''' section, at least (no, I don't know what they are) --~~~~)
 
(What is documentelement)
Line 1: Line 1:
 +
=== Docelement as root of XML tree in DOM? ===
 +
The first sample has
 +
    ReadXMLFile(Doc, 'test.xml');
 +
    PassNode := Doc.DocumentElement.FindNode('password');
 +
Does this mean that DocumentElement is the representation of the top of the XML document in DOM form? Can you also write to that to e.g. change
 +
<?xml version="1.0"?>
 +
to
 +
<?xml version="1.0" standalone="yes"?>
 +
 +
--[[User:BigChimp|BigChimp]] 09:36, 24 July 2011 (CEST)
 +
=== Required uses clauses - seems fixed? ===
 
The example routines, taken "as is",  does not compile.
 
The example routines, taken "as is",  does not compile.
 
Need to tell what units are needed in the '''uses''' section, at least (no, I don't know what they are) --[[User:Kormoran|Kormoran]] 14:19, 26 March 2011 (CET)
 
Need to tell what units are needed in the '''uses''' section, at least (no, I don't know what they are) --[[User:Kormoran|Kormoran]] 14:19, 26 March 2011 (CET)

Revision as of 09:36, 24 July 2011

Docelement as root of XML tree in DOM?

The first sample has

   ReadXMLFile(Doc, 'test.xml');
   PassNode := Doc.DocumentElement.FindNode('password');

Does this mean that DocumentElement is the representation of the top of the XML document in DOM form? Can you also write to that to e.g. change <?xml version="1.0"?> to <?xml version="1.0" standalone="yes"?>

--BigChimp 09:36, 24 July 2011 (CEST)

Required uses clauses - seems fixed?

The example routines, taken "as is", does not compile. Need to tell what units are needed in the uses section, at least (no, I don't know what they are) --Kormoran 14:19, 26 March 2011 (CET)