[XML-SIG] Simple DOM API a la dom4j/jdom

Martin v. Loewis martin@v.loewis.de
17 Jul 2002 20:16:16 +0200


"Matt G." <matt_g_@hotmail.com> writes:

> Note that it doesn't actually get ALL nodes in the entire tree - that
> would be "//*".

Thanks for the correction; this is what I meant.

> But that's so huge, compared to something like:
> 
>     result = node.getNodes( "*" )

In 4Suite (and PyXML 0.7), that should be

  result = xml.xpath.Evaluate("//*", node)

Regards,
Martin