My name is Brian Hartline and I have installed Tomcat 4.0 b7. I am trying to install 
the tea servlet (opensource.go.com) but not winning the battle thus far. When I start 
Tomcat it crashes on the web.xml file that is provided with the tea servlet. The error 
message print screen is attached with the web.xml  file. IF I take the Tea servlet 
stuff out Tomcat I don't get the error message either way Tomcat will run fine. Any 
help would be appreciated.

Thanks!

error.gif

<?xml version="1.0" encoding="ISO-8859-1"?>

<web-app>
<servlet>
<servlet-name>
teaservlet
</servlet-name>
<servlet-class>
com.go.teaservlet.TeaServlet
</servlet-class>
<init-param>
<param-name>properties.file</param-name>
<param-value>
/apps/tomcat/webapps/teaservlet/WEB-INF/TeaServlet.properties
</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>teaservlet</servlet-name>
<url-pattern>/dynamic/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>teaservlet</servlet-name>
<url-pattern>*.tea</url-pattern>
</servlet-mapping>
</web-app>

Reply via email to