Markus Fritz wrote:
have anybody get a XPath search working with a relational query on <any property> ("@*"), for example://users/*/*/*/[EMAIL PROTECTED]'Michael'] or //users/*/*/*/masterdata[jcr:contains(@*,'Michael')] I am new to XPath/jackrabbit, but the above query seems correct to me.
Try the following: //users/*/*/*/masterdata[jcr:contains(.,'Michael')] This should do what you are looking for. Cheers, Christoph
