If I have a xml like this:
<Grp>
<concept>33</concept>
<system>C</system>
I can import it in lotus notes with
<xsl:stylesheet xmlns:xsl=‘XSLT Namespace’
version='1.0'>
<xsl:template match="*|@*"/>
<xsl:template match="text()"/>
<xsl:template match='mtf'>
<database xmlns='http://www.lotus.com/dxl' version='1.01'> <xsl:text>
</xsl:text>
<xsl:apply-templates select="Grp"/>
</database>
</xsl:template>
<xsl:template match="Grp">
<document form='test'> <xsl:text>
</xsl:text>
<xsl:text> </xsl:text><item name='concept'><text><xsl:value-of select="concept"/></text></item> <xsl:text>
</xsl:text>
<xsl:text> </xsl:text><item name='system'><text><xsl:value-of select="system"/></text></item> <xsl:text>
</xsl:text>
</document><xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>
but if I have a problem with an other xml, it is not possible to import ‘valeur’
<Grp>
<concept>33</concept>
<system>C</system>
<NewGrp>
<valeur>C</valeur>
</NewGrp>
who can help me ???
Thank you very much