Re: XPathNSResolver doubts

* Joćo Eiras wrote:
>Is a XPathNSResolver returned from createNSResolver be live or static ?
>http://www.w3.org/TR/DOM-Level-3-XPath/xpath.html#XPathEvaluator-createNSResolver

As the Working Group Note says, "using the current information available
in the node's hierarchy at the time lookupNamespaceURI is called." It is
live. As for your test case, see below.

>Which uri should a XPathNSResolver return if there are 2 nodes in the dom  
>tree with different uri but equal prefix ?

This question does not arise, in a specific context a prefix can only
map to zero or one namespace names. In case of createNSResolver(...),
the resolver works pretty much as if calling Node.lookupNamespaceURI
which only looks at the current node and its ancestors. No attempt is
made to search descendants or siblings for namespace declarations. The
main use case for this feature is if you have e.g. an

  <xsl:template xmlns:p='...'
    <xsl:value-of select='p:example' ...

and want to evaluate the expression. Here you can adapt to the value-
of element and use its in-scope namespace prefixes. As per the Name-
spaces in XML Recommendations, at most one mapping can be in scope.

If you want to search the whole document for namespace declarations and
use those to resolve prefixes, you could walk the whole tree to collect
them, or query the XPath namespace:: axis to the same effect, if that
works properly in your implementation.
-- 
Björn Höhrmann · mailto:bjoern@hoehrmann.de · http://bjoern.hoehrmann.de
Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de
68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ 

Received on Tuesday, 30 January 2007 02:45:08 UTC