Hi I would like to do something like : //*[@prop='exactvalue' and jcr:contains(.//*, 'keyword')] where jcr:contains search for all sub-properties. I've tried some alternatives that does not work too : //*[@prop='exactvalue' and jcr:contains(*, 'keyword')] //*[@prop='exactvalue' and jcr:contains(.//, 'keyword')] //*[@prop='exactvalue' and .//*[jcr:contains(., 'keyword')]] but it don't seems to work (it is not asked in JSR-170 standard...). Are there any workaround? Frank