| Author |
Error! Unrecognized XSLTC extension 'org.apache.xalan.lib.Redirect:write'
|
Vinit Gaba
Greenhorn
Joined: Aug 09, 2011
Posts: 5
|
|
Any idea of below error message.. I am using ant and junit to execute the build process.
and found below error message..
/Releases/buildRelease.xml:74: The following error occurred while executing this line:
/Releases/EnoviaNXP/src/Util/patch.xml:34: javax.xml.transform.TransformerException: java.lang.RuntimeException: Unrecognized XSLTC extension 'org.apache.xalan.lib.Redirect:write'
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:716)
|
 |
Vinit Gaba
Greenhorn
Joined: Aug 09, 2011
Posts: 5
|
|
Finally found that solution at http://www.ryanlowe.ca/blog/archives/001324_unrecognized_xsltc_extension_redirectwrite.php
[junitreport] ERROR: 'Unrecognized XSLTC extension 'org.apache.xalan.xslt.extensions.Redirect:write''
I Googled the error and found a solution. It says to change any instances of
xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect
to
xmlns:redirect="http://xml.apache.org/xalan/redirect" in XSL transforms that are being used.
Well, that's almost a solution. A developer is left to figure out which XSL file to edit in the case of junitreport. Here's what I found out.
The junitreport task uses a default XSL transform file to make the JUnit report but the transform can be overridden. The default transform file is located in [ant directory]\etc\junit-frames.xsl.
thanks !
|
 |
 |
|
|
subject: Error! Unrecognized XSLTC extension 'org.apache.xalan.lib.Redirect:write'
|
|
|