My xsl stylesheet begins with the following:
<xsl:transform
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:b64="net.sf.saxon.value.Base64BinaryValue"
xmlns:fos="java.io.FileOutputStream" exclude-result-prefixes="b64 fos">
...
When I run my webapp I get the following error message:
“The URI net.sf.saxon.value.Base64BinaryValue does not identify an external Java class”
From the error message I think this means that I don’t have the required jar file.
- Where can I locate/download this jar file?
- In which folder(s) should I put this jar file? (tomcat/lib folder? My WEB-INF/lib folder?)
- Is there anything else I should take note?
Thanks in advance!
here is a list of jars that contain that class. it should work fine in either of the locations you give (in the first case, for all applications; in th second for that specific application – i would normally use the latter).