vote up 0 vote down star

I'm trying to run an XSLT transformation from an ant file.

I'm using a XSLT 2.0 stylesheet with a saxon 9 parser (supporting XSLT 2.0).

The problem is that it seems that ant is always calling an XSLT 1.0 parser.

Here's my ant file :

<xslt style="stylesheet.xslt"
   basedir="core/"    
   extension=".xml"
   destdir="core/"
   classpath="D:\\DevTools\\saxon\\bin\\saxon9.jar">
</xslt>

If I call it directly (without ant), it's working.

Any idea ?

flag

That's may be interesting xml.com/pub/a/2002/12/11/ant-xml.html but a little old (mtxslt last update is 2002 - mtxslt.sf.net) – paulgreg May 28 at 9:09

3 Answers

vote up 2 vote down check

The problem is that while Saxon is added to the classpath, the default JAXP mechanism to determine which TransformerFactory is used and it will use the default that is Xalan. You either need to:

  • Set javax.xml.transform.TransformerFactory system variable to net.sf.saxon.TransformerFactoryImpl,
  • Add saxon9.jar to the CLASSPATH system variable, or
  • Use <factory name="net.sf.saxon.TransformerFactoryImpl"/> inside the xslt element
link|flag
vote up 0 vote down

Create a taskdef from the Saxon AntTransform class:

  <taskdef name="saxon-xslt" classname="net.sf.saxon.ant.AntTransform" classpath="${basedir}/lib/saxon/saxon9.jar;${basedir}/lib/saxon/saxon9-ant.jar"/>

   <saxon-xslt
     in="${source.xml}"
     out="${out.dir}/${output.xml}"
     style="${basedir}/${stylesheet.xsl}"
     force="true">
   </saxon-xslt>
link|flag
vote up 1 vote down

This tutorial seems to give step by step instructions on how to do what you are asking:

http://www.abbeyworkshop.com/howto/xslt/ant-saxon/index.html

From that it appears you are doing the correct thing. Are you sure you need the double back slashes?

Update: The xslt ant documentation mentions the 'factory' property which may help you get closer:

http://ant.apache.org/manual/CoreTasks/style.html

link|flag
On windows, I think I need. – paulgreg May 28 at 9:41
updated - possibly use the 'factory' attribute. – samjudson May 28 at 9:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.