Re: [xsl] xsl data type problem? two values appear to be equal but ...

Subject: Re: [xsl] xsl data type problem? two values appear to be equal but ...
From: andrew welch <andrew.j.welch@xxxxxxxxx>
Date: Tue, 13 Dec 2005 16:23:19 +0000
> <xsl:with-param name="ds-predecessor"
select="/fssc/component-list/processes/process[data-sinks/data-sink[.=@id]]"
/>

This is saying "is the string value of data-sink equal to the id
attribute of data-sink", whereas I think you meant to check against id
attribute of the context node, eg:

/data-sink[. = current()/@id]

cheers
andrew

Current Thread