I want yo use the EXSLT - DYN:EVALUATE in a style sheet. I have added the names pace but I don't know where the .xsl file I need to import is. I don't believe I have XALAN installed to point the import to. How would I install this? Once installed and I point it to the .xsl will it pick up the function and apply it? I am running Windows. The XSLT file is included at the top of the XML document.
Thanks
Pete
javax.xml.transform.TransformerFactory
to abstract away your XSLT processor,dyn:evaluate
will fail with the defaultTransformerFactory
implementation shipped with the JDK. This is because the JDK implementation is the Xalan XSLTC compiler, not the interpreter, and althoughdyn:evaluate
is recognized, it cannot be handled. – Isodimorphism