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

Re: Passing inputs to an XSLT

Subject: Re: Passing inputs to an XSLT
From: "Zink, Juergen" <Juergen.Zink@xxxxxxxxxxxxxxxxxxxx>
Date: Wed, 14 May 2003 08:37:34 +0200
xmlnewdoc
Hello,

>I wanted to pass a string as input to an XSLT file, which will then be used
>as a variable in the XSLT file. 

>If anyone could find a solution please help me out.

maybe you can try with scripting. Inside an html or directly with
windows scripting host. Example below with MSXML4 and java scripting.

// File   xmlWorker.js
//

//<script language="javascript">
	
var objArgs = WScript.Arguments;
var baustein = objArgs(0);

var xmldoc = new ActiveXObject("Msxml2.DOMDocument.4.0");
xmldoc.async = false;
xmldoc.preserveWhiteSpace = true;
xmldoc.validateOnParse = false;
xmldoc.load( baustein );

var xmlnewdoc = new ActiveXObject("Msxml2.DOMDocument.4.0");
xmlnewdoc.async = false;
xmlnewdoc.preserveWhiteSpace = true;
xmlnewdoc.validateOnParse = false;

var xsldoc = new ActiveXObject("Msxml2.DOMDocument.4.0");
xsldoc.async = false;
xsldoc.preserveWhiteSpace = true;
xsldoc.validateOnParse = false;
xsldoc.load( "xmlWorker.xsl");

xmldoc.transformNodeToObject( xsldoc, xmlnewdoc );
xmlnewdoc.save( baustein + "-result" );

Regards,

Juergen

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


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.