
I am beginner of
J2EE and studying HFS with
Tomcat 4, J2EE1.4 and windowsXP. According to first example of web.xml on page 30, the heading should be :
<web-app xmlns="http://java.sun.com.xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com.xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
but it don't work in my situation with message
Parse Error at line 4 column 85: Document root element "web-app", must m
atch DOCTYPE root "null".
until xml changed to change:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
:
</web-app>
Could anyone help to explain? Many thanks!