Dear Maintainer,
Using Saxon catalog resolver,
// ( saxonconfig.setConfigurationProperty(FeatureKeys.ENTITY_RESOLVER_CLASS,
"org.apache.xml.resolver.tools.CatalogResolver"); )
the resolver has an error finding some entity files:
Error
I/O error reported by XML parser processing null:
/usr/share/xml/w3c-sgml-lib/schema/dtd/REC-xhtml1-20020801/xhtml-lat1.ent (No
such file or
directory)
The 'xhtml-lat1.ent' is referenced from the dtds, like this
root@home:/usr/share/xml/w3c-sgml-lib/schema/dtd/REC-xhtml1-20020801# grep -nC
3 "xhtml-lat1.ent" ./*
../xhtml1-frameset.dtd-25-
../xhtml1-frameset.dtd-26-<!ENTITY % HTMLlat1 PUBLIC
../xhtml1-frameset.dtd-27- "-//W3C//ENTITIES Latin 1 for XHTML//EN"
../xhtml1-frameset.dtd:28: "xhtml-lat1.ent">
../xhtml1-frameset.dtd-29-%HTMLlat1;
../xhtml1-frameset.dtd-30-
../xhtml1-frameset.dtd-31-<!ENTITY % HTMLsymbol PUBLIC
I fixed it by linking same files in another dir to this location:
# ln ../REC-xhtml-modularization-20100729/xhtml-*.ent ./
There might be other similar issues.