Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: XPath Queries not working correctly in Schema

From: David Carlisle <davidc@---.--.-->
To: NULL
Date: 4/5/2005 3:15:00 PM
This is the  most F of faqs,

<xsl:template match="//PersonName">

which matches the same things as

<xsl:template match="PersonName">

a leading // never does anything useful in a match pattern, it only
changes the default priority.

matches PersonName in no-namespace.

similarly

		<xsl:value-of select="normalize-space(FamilyName)"/>

selects FamilyName in no-namespace

<Enrollment xmlns="http://ns.hr-xml.org/2004-08-02"

sets the default namespace to http://ns.hr-xml.org/2004-08-02
and I would guess that your PersonName and 
FamilyName elements are in that namespace, so these are not matched by
the Xpath expressions above.

add

xmlns:h="http://ns.hr-xml.org/2004-08-02"

to your xsl:stylesheet and then use

<xsl:template match="h:PersonName">
		<xsl:value-of select="normalize-space(h:FamilyName)"/>
		<xsl:text>,</xsl:text>
		<xsl:value-of select="normalize-space(h:GivenName)"/>
		<xsl:text>,</xsl:text>
		<xsl:value-of select="normalize-space(h:MiddleName)"/>
		<xsl:text>,</xsl:text>
		<xsl:value-of select="normalize-space(h:Affix)"/>
		<xsl:text>,</xsl:text>
	</xsl:template>


David


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent