[Home] [By Thread] [By Date] [Recent Entries]
On the page http://xml.apache.org/xalan-j/commandline.html you can see
the correct syntax:
java org.apache.xalan.xslt.Process -IN foo.xml -XSL foo.xsl -OUT foo.out -PARAM name value In your stylesheet you have to set a top-level-param: <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:param name="commandparam" value="'default'"/> <xsl:template match="/"> You don't need <xsl:param> here. <xsl:value-of select="$commandparam"/> </xsl:template> </xsl:stylesheet> Regards, Joerg -- System Development VIRBUS AG Fon +49(0)341-979-7411 Fax +49(0)341-979-7409 joerg.heinicke@xxxxxxxxx www.virbus.de XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



