[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: prarameter from commandline

Subject: RE: prarameter from commandline
From: cknell@xxxxxxxxxx
Date: Mon, 19 Mar 2007 12:48:23 -0400
RE:  prarameter from commandline
There's nothing wrong with your command-line, so the problem must be elswhere.

Here is a complete stylesheet that produces the output you are looking for.

<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:strip-space elements="*" />
  <xsl:output method="xml" indent="yes" encoding="UTF-8" />

	<xsl:param name="source"/>

	<xsl:template match="*">
	   source: <xsl:value-of select="$source"/>
	</xsl:template>
</xsl:stylesheet>
-- 
Charles Knell
cknell@xxxxxxxxxx - email



-----Original Message-----
From:     Garvin Riensche <g.riensche@xxxxxxx>
Sent:     Mon, 19 Mar 2007 17:06:47 +0100
To:       xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject:   prarameter from commandline

Hello,

I guess this is an easy one for you as I just can't figure out how to 
pass parameters from the commandline to a stylesheet. Saxon is called with:

java -jar saxon8.jar input.xml test.xsl source=test

I also tried "source=test" and source="test" (I am using winXP)

And the stylesheet looks like this:

<xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
<xsl:param name="source"/>

<xsl:template match="*">
   source: <xsl:value-of select="$source"/>
</xsl:template>

But the value doesn't get passed.

Regards,
Garvin

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.