raffian
raffian

Reputation: 32056

How to use Saxon XSLT engine with Altova XmlSpy?

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.

enter image description here

Upvotes: 2

Views: 2688

Answers (1)

raffian
raffian

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

enter image description here

Upvotes: 6

Related Questions