[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

Subject: Why does my XSLT produce a Warning message with never-executed code that divides a blank by 10?
From: "Roger L Costello costello@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sun, 31 Mar 2024 07:56:32 -0000
 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

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.