External XSLT processor

Oxygen general issues.
anhil
Posts: 2
Joined: Thu Feb 19, 2026 10:36 pm

External XSLT processor

Post by anhil »

Hello all,

I try to use an external XSLT processor (called goxslt), The arguments of the binary are XML document, XSLT document and -o output.xml

So I go to preferences, XML / XSLT - XQuery / Custom engines, add my engine and type this command line:

Code: Select all

/mydir/goxslt ${xml} ${xsl} -o ${out} 
in the transformation scenario the path to the source is

Code: Select all

${pdu}/examples/catalog.xml

This is the command line oxygen executes:

Code: Select all

/mydir/goxslt /mydir/examples/catalog.xml_xml /mydir/examples/oxy_tmpET13514736794708273706.xsl -o /mydir/examples/oxy_tmpET9549614497481224624.out
I wonder where the `_xml` extension comes from in the first argument? I'd expect this to be /mydir/examples/catalog.xml. not .xml_xml

Thank you,
Patrick