this is the excerpt of the XML file.
<rdf:RDF>
<rdf:Description rdf:about="http://abc.org/JohnD">
<video:Movie xml:lang="en" xmlns:video="http://example.org/movie">Avatar</video:Movie>
</rdf:Description>
<rdf:Description rdf:about="http://abc.org/JohnD">
<foaf:interest xml:lang="en" xmlns:foaf="http://xmlns.com/foaf/0.1/">games</foaf:interest>
</rdf:Description>
</rdf:RDF>
the XSL excerpt
<xsl:template match="rdf:RDF/rdf:Description">
<xsl:value-of select="video:Movie"/>
</xsl:template>
I want to select the literal "Avatar" from the node with the name <video:Movie>
only
I ve tried using <xsl:value-of select="video:Movie"/>
and various other combination, but it just won't display. I have declared the namespace accordingly in the XSL header.