I don't think you can have child nodes with the same name underneath the same parent. I modified your XML file like so:
Code:
<grant>
<Deadlines>
<anyType1>04.05.05</anyType1>
<anyType2>03.01.06</anyType2>
<anyType3>03.01.07</anyType3>
<anyType4>10.15.07</anyType4>
</Deadlines>
</grant>
Then used this stylesheet to get the display to come out right:
Code:
<xsl:template match="/">
<xsl:for-each select="grant/Deadlines">
<xsl:value-of select="anyType1" /><br/>
<xsl:value-of select="anyType2" /><br/>
<xsl:value-of select="anyType3" /><br/>
<xsl:value-of select="anyType4" /><br/>
</xsl:for-each>
</xsl:template>
Bookmarks