I'm having trouble selecting elements that are part of an specific namespace. My xpath expression works in XMLSpy but fails when using the Xalan libraries..
<item>
<media:content attrb="xyz">
<dcterms:valid>VALUE</dcterms:valid>
</media:content>
</item>
My expression ./item/media:content/dcterms:valid
. I've already added both namespace definitions to my xslt. Again, this selects the right values in XMLSpy but fails when running through xalan library.
Any ideas?