I'm attempting to run saxon-js on the command line to apply XSL 3 transformations currently working in another system with Saxon HE, because saxon-js looks like it can offer a lot more versatility.
I am essentially brand new to XSL so the learning curve is steep.
The error on which I am currently stuck is this:
Transformation failure: Error FODC0002 at iati.xslt#90 Unknown collection (no collectionFinder supplied)
The snippet of XSLT which triggers this is:
<xsl:variable name="iati-codelists">
<codes version="2.03">
<xsl:apply-templates select="collection('../lib/schemata/2.03/codelist/?select=*.xml;recurse=yes')" mode="get-codelists"/>
<xsl:apply-templates select="collection('../lib/schemata/non-embedded-codelist/?select=*.xml;recurse=yes')" mode="get-codelists"/>
</codes>
</xsl:variable>
This intends to go to that directory and sweep up a collection of .xml files.
Looking at the saxon-js docs, I see no option to provide a collection finder.
Is this something implemented in Saxon HE (which is presently doing the work) and not currently in Saxon-Js? Or am I barking up a different but equally wrong tree?
Thanks!
Yes you can. However the collectionFinder doesn't seem to work asynchronously so it's not super useful if you are writing an asynchronous application.
I was able to get this to work with some hardcoding of the paths provided in the collections() in my node app as a proof of concept. Definitely is a better way to do this.
If this is your XML
Before the transform runs this code creates an object of the collections. The keys are a part of the file path to the codelist directories which contain a series of xml docs. The values are Arrays of the xml documents converted into the format Saxon JS needs with SaxonJS.getResource(). It got a little tricky with having the Promises inside the object so I had to use Lodash.
Full details in the Saxon-JS support forum: https://saxonica.plan.io/issues/4797?pn=1#change-16579