xsl-list
[Top] [All Lists]

Re: [xsl] invalid xpath?

2008-07-02 03:31:41
Trevor Nicholls wrote:
The following template errors in xsltproc and XMLSpy but appears to function
correctly when run by Saxon.

[...snip...]

   </xsl:when>
   <xsl:when test="not(preceding-sibling::*)[starts-with($Arg,'&#x0a;')]">
    <xsl:call-template name="WS">

[...snip...]

The xsltproc error is "XPath error: Invalid type"
XMLSpy says "Error in XPath expression, Not a node set"

Both xsltproc and XMLSpy are correct: the expression not(preceding-sibling::*) does not return a node set but a boolean and the [...] expression behind it can only be executed on a boolean.

Perhaps when you run it with Saxon you run it as XSLT 2.0 which allows for a predicate expression on a boolean.

I thought the test expressions are valid v1.0 XSL. Is this not so?

Yes, they are valid.

Cheers,
-- Abel --

PS: sending the line number in your post would make it a bit easier to find what's wrong. Now we have to go through all lines with an XPath.

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>