[Home] [By Thread] [By Date] [Recent Entries]
The following doesn't work in an XSLT processor with basic conformance:
<xsl:element name="a" type="xs:integer">5</xsl:element>
even though you can create variables using the built-in types:
<xsl:variable name="a" select="5" as="xs:integer"/>
or use the constructor functions:
<xsl:variable name="a" select="xs:integer('5')"/>
What's the reason for this restriction? Why can't I use built-in types
to annotate new nodes?
--
Max Toro
|

Cart



