During startup,
Tomcat 5.0.x tries to resolve the DTDs for XML files in my web app. Unfortunately, I'm behind a firewall, so effectively there's no Internet connection for it to find the PUBLIC DTDs.
In the past, I've simply altered the DOCTYPE element to point to local copies of DTD files I'm using in my web app. However, some third party JARs include XML files, and I really don't want to be editing their XML files.
Is there a Tomcat configuration setting that would allow me predeploy all the needed DTDs to Tomcat and make it look there for the DTD files before trying to get an Internet connection?
Also, does Tomcat support the use of the OASIS XML Catalogs? I can export a .xmlcatalog from Eclipse and deploy it with my web app, but I'm not sure if Tomcat would even use it.
Thanks in advance!