[xquery-talk] How can I retrive namespace defined in xml

David Carlisle davidc at nag.co.uk
Mon Jan 30 05:47:00 PST 2012


On 30/01/2012 13:34, Markus Pilman wrote:
> Hi,
>
> declare function functx:namespaces-in-use
>    ( $root as node()? )  as xs:anyURI* {
>
>     distinct-values(
>        $root/descendant-or-self::*/(.|@*)/namespace-uri(.))
>   } ;
>
> You can look it up here:
> http://www.xqueryfunctions.com/xq/functx_namespaces-in-use.html
>
> Hope this helps
>
> Markus
>
That would only return the namespaces of elements and attribute, not 
namespaces declared but not used or declared but only used in content 
(such as for types in XSD schema, or namespaces declared in XSLT but 
only used in variable and function names).

To find all declared namespaces you want to use the namespace axis in 
those products that support it or the fn:in-scope-prefixes and 
fn:namespace-uri-for-prefix functions otherwise.

David
-- 
google plus: https:/profiles.google.com/d.p.carlisle

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________


More information about the talk mailing list