vote up 4 vote down star
2

I'm trying to use XPath to find all elements that have an element in a given namespace.

For example, in the following document I want to find the foo:bar and doodah elements

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:foo="http://foo.example.com">
  <foo:bar quux="value">Content</foo:bar>
  <widget>Content</widget>
  <doodah foo:quux="value">Content</doodah>
</root>

I know I can use the following XPath expression to load all attributes from a given namespace

"//@*[namespace-uri()='http://foo.example.com']"

However:

  • This doesn't give me the elements, just the attributes and
  • where elements contain multiple attributes from that namespace, this XPath will return a result per-attribute rather than per-element

Is it possible to get what I want, or do I just have to gather the attributes and calculate the unique set of elements they correspond to ?

EDIT: I was given the following answer by Dimitre Novatchev. I didn't realise that you could nest predicates inside predicates like this:

"//*[@*[namespace-uri()='http://foo.example.com']]"

Specifically this says "Any element that has any attribute that has namespace-uri = '...'"

flag

Did you forgot to add a namespace for doodah? Because I don't see how it can be selected through a namespace. – potyl Feb 9 at 19:54
If the clarifications weren't clear, I used the wrong namespace in my original example. My mistake. – Gareth Feb 10 at 14:06

5 Answers

vote up 5 vote down check

Use:

  //*[namespace-uri()='yourNamespaceURI-here'
     or
      @*[namespace-uri()='yourNamespaceURI-here']
     ]

the predicate two conditions are or-ed with the XPath or operator.

The XPath expression thus selects any element that either:

  • belongs to the specified namespace

or

  • has attributes that belong to the specified namespace
link|flag
It was only the second half of that I needed :) I didn't know you could nest predicates in predicates. Have updated my post accordingly – Gareth Feb 10 at 0:03
vote up 0 vote down

Thanks for this post, it really helped.

To sum up:


# get elements with attributes from a given namespace:
//*[@*[namespace-uri()='http://foo.example.com']]
# get attributes from a given namespace:
//@*[namespace-uri()='http://foo.example.com']
link|flag
vote up 0 vote down

Your XPath expression is almost perfect. Instead of asking for attributes "@" ask for elements "" and it should work:

"//*[namespace-uri()='http://foo.example.com']"
link|flag
You haven't understood the question. The OP wants any element to be selected, that either belongs to the namespace or has ot least one attribute that belongs to the namespace. Your expression doesnt select an element that has attributes in the namespace but the element doesnt belong to the namespace – Dimitre Novatchev Feb 9 at 21:33
Thanks for the clarification. I know that I haven't understood the question as I added a comment to the question asking why "doodah" should be selected. – potyl Feb 10 at 7:09
vote up 0 vote down

You could try

//*[namespace-uri()='http://foo.example.com' or @*[namespace-uri()='http://foo.example.com']]

It will give you element foo:bar and element doodah (if you change tal:quux to foo:quux in your XML-data):

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:foo="http://foo.example.com" xmlns:tal="xxx">
  <foo:bar quux="value">Content</foo:bar>
  <widget>Content</widget>
  <doodah foo:quux="value">Content</doodah>
</root>

is that what you want?

EDIT: Thanks for spotting the attribute mistake, corrected now.

link|flag
Not quite so... namespace-uri(./@*)='foo.example.com'] returns true only if the first attribute (which is implementation dependent!) belongs to that namespace. The original post wants the element to be selected if any of its attributes belongs to the namespace – Dimitre Novatchev Feb 9 at 21:30
Oops, good spot with the tal I left in there by mistake – Gareth Feb 10 at 0:10
vote up 1 vote down

Not sure if this is what you mean, but by only deleting 1 char in your XPath you get all elements in a certain namespace:

//*[namespace-uri()='http://foo.example.com']
link|flag
does not match attrubutes in that namespace – Johannes Weiß Feb 9 at 20:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.