|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Namespace ?
I want to extract the FormattedName from the following XML file:
<?xml version="1.0" encoding="UTF-8"?>
<Resume xmlns="http://ns.hr-xml.org/RecruitingAndStaffing/SEP-2_0">
<StructuredXMLResume>
<ContactInfo>
<PersonName>
<FormattedName>John Doe</FormattedName>
</PersonName>
</ContactInfo>
</StructuredXMLResume>
</Resume>
I use the following XSL file:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
<html>
<head>
<title>
<xsl:value-of
select="Resume/StructuredXMLResume/ContactInfo/PersonName/FormattedName"
/>
</title>
</head>
<body>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
But this does not work.
In the XML file if I replace
<Resume xmlns="http://ns.hr-xml.org/RecruitingAndStaffing/SEP-2_0">
By
<Resume>
This work fine
Could anybody explain me why ?
---
Stéphane
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








