This is my web.xml file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!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>
<display-name>Carpool Database</display-name>
<description>Utility to mitigate the impact of the impending transit
strike</description>
<welcome-file-list>
<welcome-file>start.jsp</welcome-file>
<welcome-file>start.html</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>DisplayServlet</servlet-name>
<display-name>DisplayServlet</display-name>
<servlet-class>DisplayServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DisplayServlet</servlet-name>
<url-pattern>/DisplayServlet</url-pattern>
</servlet-mapping>
</web-app>
For the life of me, I can't figure out why there's a problem, but Tomcat
refuses to parse this! I keeps complaining about line 20, column 11, which
is where my first <servlet> tag starts. Is there something stupid I'm
missing here?
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>