java - XML Catalog Resolving / resolver.jar vs com.sun.org.apache.xml.internal.resolver -
dear forum, difference between jdk contained
import com.sun.org.apache.xml.internal.resolver.catalogmanager;
and 1 contained in apache xerces project
import org.apache.xml.resolver.tools.catalogresolver;
are there benefits of using latter simple catalog resolving? read on wikipedia seems clear me there no benefit in using latter:
org.apache.xml.resolver.tools.catalogresolver used resolve external entities locally-cached instances. resolver originates apache xerces included sun java runtime.
anyway xml related projects qizx supply seperate resolver.jar. help. michael
the com.sun.org.apache.xml
packages copies of apache projects have been "internalised" jre. you'll find done many of apache xml projects, including xerces , xalan.
in 99% of cases, internal 1 fine. reason use org.apache
versions if need latest version, bugfix.
Comments
Post a Comment