Howdy, Hendrik-Jan:
The fact that few global words wind up getting set by the XML
parser is actually probably a bug. What you generally do is:
result: parse-xml read %file.xml
The result will be a nested block representing the parsed tree of
the XML document. You navigate the tree using REBOL's block accesor
functions, or recursive functions that you make.
The parser is not validating, does not follow external references,
and it does not do any entity replacement. But, with those caveats,
if you have a stand alone xml document which doesn't get too fancy,
the parser does fine. Expanded support for XML is on the development
slate at REBOL Technologies for future versions of REBOL/command.
-jeff
> Dear rebols,
> I have asked a few questions about XML/REBOL before, but alas, i
> have another one:
> after parsing an XML-file,
> >>probe node ["access_status" none [" "]] == ["access_status" none
> [" "]]
> In the case of the XML file I used, this "access_status" is the
> last 'node' of the file. Interesting i can access it using >node<,
> but i can understand there is more to this: documentation about this
> is nonexistant, could someone help me out with this???
>
> There are other words which are given values after parsing, but
> what can i do with them? (probe data, probe temp etc.?)
> Hendrik-Jan
>
>
>