> 1.
> 
> I'm trying to process the child nodes of an element node that was
> selected with the use of an evaluator but, although hasChildNodes
> returns true, when I try to process the child nodes I always get an
> error as if the nodes don't have any callable methods

The default source tree implementation does not support getChildNodes(). 
You need to use getFirstChild(), then getNextSibling() on each child node 
to go through the list of children.  There are many examples of this in 
the source code.

> 2. I'm trying to find all CDATA nodes in an XML document and I don't
> know how should I formulate the query for the evaluator. Any
> suggestions ?

CDATA sections are not part of the XPath data model, so they are not 
represented in the source tree, and you cannot search for them.

Dave

Reply via email to