i use Xalan as XLST-Processor inside the application server wildfly. Everything works fine so far, but when I try to use date and time functions from exlst, i got NoClassDefFoundError and I don't know why.
The definition is:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:datetime="http://exslt.org/dates-and-times" version="1.0"">
When I try to use the year-function datetime:year
i got the error. Any Ideas why the class can not be found?
Thank you!