|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Passing inputs to an XSLT
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








