I have the Java method ...
public static Object parseXMLtoXLSX(File xmlFile, String path)
So I want to call the method from XSLT.
I understand, that I have to introduce the class in my XSLT File e.g. like this:
<xsl:stylesheet version="2.0" xmlns:trans="pathToMyJavaClass">
But how can I call the method?
Is this the right way?:
<xsl:value-of select="trans:parseXMLtoXLSX($xmlFIle,$path)" />
But how can I store the Java File Object, that I get back from the Method in a Variable?
Edit: I can't show the < > in this question...