xsl-list
[Top] [All Lists]

Re: [xsl] Saxon Transformation

2007-03-05 01:24:44
jeb501(_at_)sanmargroup(_dot_)com wrote:
Which of the below method is best to use, Comparing its speed of
processing, effectiveness etc.,

java net.sf.saxon.Transform -o MyFile.html MyFile.xml MyFile.xsl

java -jar saxon.jar MyFile.xml MyFile.xsl > MyFile.htm

regardsEugene

Hi Eugene,

This seems like a Saxon-specific inquiry to me, which is best asked on the saxon user list. The two methods are a little different, but the speed you gain by specifying the start class is negligible compared to the time required to compile your stylesheet. The difference between redirecting stdout and letting Saxon write to stdout for you is, imho, zero.

If you want to gain speed when running multiple transformations, your best bet is to use the Saxon Java API. You can reuse your compiled stylesheet which will save a significant amount of time for each transformation.

Cheers,
-- Abel

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--