Reputation: 32056
Is it possible to use Saxon in XmlSpy (2013 PE) for XSLT processing? There's a setting for external EXE program, but Saxon being Java doesn't play well here.
Upvotes: 2
Views: 2688
Reputation: 32056
Ok, just figured this out (consistent with Martins comment above using java -jar
):
java -jar <fullPathToJar>/saxon9.jar -s:%1 -o:%2 -xsl:%3
-s xml source file
-o output file
-xsl (optional) xsl file
Upvotes: 6