AW: [xsl] How to Save Transformed XML to Disk

Subject: AW: [xsl] How to Save Transformed XML to Disk
From: "Zink, Juergen" <Juergen.Zink@xxxxxxxxxxxxxxxxxxxx>
Date: Fri, 21 Feb 2003 07:37:40 +0100
Imrran,

<snip>

>I am sorry for not being quite clear. Yes I am doing
>the transformation in the browser (IE 6.0).

Microsoft writes "the function save is only supported from a secure client."
So, IE 6.0 semms not a secure client. IE 5.5 was able to do save.
Cut your lines inside the script to a file "xxx.js" for java script. 
Then double click on the file or command line will work.
Windows scripting host required.

Cheers, Jürgen

Example script with arguments from command line and MSXML4 parser.

var objArgs = WScript.Arguments;
var xmlIn = objArgs(0);

var xmldoc = new ActiveXObject("Msxml2.DOMDocument.4.0");
xmldoc.load( xmlIn );

var xmlnewdoc = new ActiveXObject("Msxml2.DOMDocument.4.0");
var xsldoc = new ActiveXObject("Msxml2.DOMDocument.4.0");
xsldoc.load( "your-stylesheet.xsl");
xmldoc.transformNodeToObject( xsldoc, xmlnewdoc );
xmlnewdoc.save( xmlIn + "-out" );




*****************************************************************************
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte 
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese 
eMail irrtuemlich erhalten haben, informieren Sie bitte sofort den 
Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren 
sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

This e-mail may contain confidential and/or privileged information. 
If you are not the intended recipient (or have received this e-mail 
in error) please notify the sender immediately and destroy this e-mail. 
Any unauthorized copying, disclosure or distribution of the material 
in this e-mail is strictly forbidden.
*****************************************************************************


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


Current Thread