|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Why does my XSLT produce a Warning message with never
Hi Folks,
I have a program that generates this XSLT code:
<xsl:template match="/">
<xsl:variable name="test" select="' '" as="xs:string"/>
<xsl:value-of select="
if (normalize-space($test) eq '') then ()
else xs:integer($test) div 10"/>
</xsl:template>
When I execute that XSLT code, I get this warning message:
Warning: SXWN9000 Evaluation will always throw a dynamic error: Cannot
convert zero-length string to an integer
Why am I getting that Warning message? This:
xs:integer($test) div 10
will never be executed because of this:
if (normalize-space($test) eq '') then ()
So I don't understand why I am getting the Warning message.
How can the XSLT code be written so that, when executed, it doesn't produce a
Warning message? Note: recall that I have a program that generates the XSLT
code. Sometimes the program generates $test with a blank value, other times
the program generates $test with a numeric value. The generated XSLT code
needs to work with both cases.
/Roger
|
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








