wbarker> Tomcat includes the DTD for Servlet 2.3. It automagically wbarker> tells the XML parser to use it's shipped-with DTD when wbarker> parsing your web.xml file.
Yes, Tomcat will resolve the DTD to a local copy. One thing that you should note: callme_sanjay> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, callme_sanjay> Inc.//DTD Web Application 2.2//EN" callme_sanjay> "http://java.sun.com/dtd/web-app_2_3.dtd"> Above, you've used the public identifier for the Servlet 2.2 specification, and the system identifier for the Servlet 2.3 specification. Depending on which of those Tomcat bases the local resolution on, you may end up getting the wrong DTD. >> and also want to know what is the meaning for "PUBLIC" >> in this statement. Google for "doctype syntax". -- Steve --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
