[Webtest] Question about XSL processors

Eric Pugh webtest@lists.canoo.com
Wed, 12 Jun 2002 15:32:03 -0400


Hi all,

I had a working set of XSL files that I grouped in a /template directory for
WebTest..  Then all my various projects could leverage one installation.

Unfortuanantly, I upgraded to Ant1.5, and am having lots of processor
issues..  So I am trying to back down to 1.4.1 with out much success..

I am failing on my calls to ApplyXSL.xml.  For these targets:
	<target name="applyMulti" if="path.ok" depends="failIfBadPath">
        <style
            basedir="${resultpath}"
            destdir="${resultpath}"
            includes="TestSummary*xml"
            extension=".html"
            processor="xalan"
            style="report.xsl">
            <param name="reporttime" expression="${report.time}"/>
        </style>
 	</target>

	<target name="applySingle" if="path.ok" depends="failIfBadPath">
        <style
            in="${resultpath}/${resultfile}"
            out="${resultpath}/${resultfile.html}"
            processor="trax"
            style="${style}">
            <param name="reporttime" expression="${report.time}"/>
        </style>
    </target>

Why does one use trax and the other use xalan?  What jars (and versions) do
I need to have in my ant/lib?

Eric