Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We use jasperreports 4.1.1 in our project and it works fine but recently we've decided to switch to xslt 2.0 and the first thing i did - i changed xalan (which doesn't have xslt 2.0 implementation) to saxon. But the first report i run threw me NoClassDefFoundError:

java.lang.NoClassDefFoundError: org/apache/xpath/CachedXPathAPI
    at net.sf.jasperreports.engine.util.xml.XalanXPathExecuter.<init>(XalanXPathExecuter.java:45)
    at net.sf.jasperreports.engine.util.xml.XalanXPathExecuterFactory.getXPathExecuter(XalanXPathExecuterFactory.java:39)
    at net.sf.jasperreports.engine.util.xml.JRXPathExecuterUtils.getXPathExecuter(JRXPathExecuterUtils.java:85)
    at net.sf.jasperreports.engine.data.JRXmlDataSource.<init>(JRXmlDataSource.java:172)
    at net.sf.jasperreports.engine.query.JRXPathQueryExecuter.createDatasource(JRXPathQueryExecuter.java:91)

We don't have any explicit binding to xalan, but jaspereports has this property:

# Apache Xalan XPath executers are used by default
net.sf.jasperreports.xpath.executer.factory=net.sf.jasperreports.engine.util.xml.XalanXPathExecuterFactory

I suppose that this property cause jasper to use xalan but i don't understand with what i can change it: i looked at the package net.sf.jasperreports.engine.util.xml and i didn't found anything related to saxon. Does jasper work with xalan xslt processor only? If not then how to change it?

share|improve this question

1 Answer

Jasper is very configurable. I believe you can simply write your own XPathExecutionFactory and plug it into Jasper by using the appropriate environment varialbles. I personally would just deploy xalan und saxon in parallel, if I needed saxon for something else.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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