I am applying a metadata filter to an existing XML document that looks like this:
//description[text()='Desc'] and //keyword[@ddms:value='Adv1']
My question is, how would I filter multiple keywords? Would it be as simple as:
//description[text()='Desc'] and //keyword[@ddms:value='Adv1', 'Adv2', 'Adv3', 'etc']
Thanks in Advance.