This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

What's wrong with XalanC?


I'm trying to use the XalanC Transformer (WinNT), and the "value-of" doesn't
evaluate at all...
1. In the XmlSpy 3.5 it does the job. Is it a bug in Xalan, or am I missing
something?
2. Is there a way to bypass the problem?
3. I understand that Xalan isn't recommended by many XSL users. What is? I
need high performance rate on solaris, and have small XSL template files.


x.xsl:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0">

	<xsl:param name="ggg">
		<xxx>bbb</xxx>
		<zzz>aaa</zzz>
	</xsl:param>

	<xsl:template match="asdf">
		<xsl:param name="ggg" select="$ggg"/>
		<abc>z <xsl:value-of select="$ggg/zzz"/> z
		</abc>
	</xsl:template>

</xsl:stylesheet>

x.xml:
<asdf/>

Thanks.



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]