Saxon doesn't support OASIS's XML Catalogs natively. But adding this support yourself
is
quite easy. You need the XML Commons
Resolver from Apache. Make sure the JAR resolver.jar
you will find in the
archive is in you classpath. Then you need to call Saxon with the following options:
java -cp <saxon and resolver jars> \ -Dxml.catalog.files=<the catalog files> \ -Dxml.catalog.verbosity=1 \ net.sf.saxon.Transform \ -r org.apache.xml.resolver.tools.CatalogResolver \ -x org.apache.xml.resolver.tools.ResolvingXMLReader \ -y org.apache.xml.resolver.tools.ResolvingXMLReader \ <other options>
That's it!
You can also use my shell script to launch Saxon, that supports catalogs through additional options (see the script page or this post):
saxon --catalogs=<the catalog files> <other options>
Posted by Florent Georges, on 2007-05-14T23:41:00, tags: saxon and xslt.