Can I run XSL 2.0 / 3.0 transformation with Saxon EE using the oXygen SDK?
InputSource is = new org.xml.sax.InputSource(URLUtil.correct(new File("test/personal.xsl")).toString()); xslSrc = new SAXSource(is); javax.xml.transform.Transformer transformer = authorAccess.getXMLUtilAccess().createXSLTTransformer(xslSrc, null, AuthorXMLUtilAccess.TRANSFORMER_SAXON_ENTERPRISE_EDITION); transformer.transform(new StreamSource(new File("test/personal.xml")), new StreamResult(new File("test/personal.html")));If you want to create the transformer from the plugins side, you can use this method instead: ro.sync.exml.workspace.api.PluginWorkspace.getXMLUtilAccess().