You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Rodrigo Giammarini <rg...@sda.com.ar> on 2002/08/12 16:04:07 UTC

Loading new context on tomcat 4

Hi ! 
I have a problem loading new context on tomcat 4.0.4 on a Redhat 7.2 and java 1.4.0_01, the app that wont work in tomcat 4 is working on tomcat 3.2.1-
If I delete this lines from de webapps/context-name/WEB-INF/web.xml the page is loaded but not displayed an in the /manger/list appears as running-
web.xml
<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
<web-app>

  <session-config>
    <session-timeout>10</session-timeout>
  </session-config>

  <servlet>
    <servlet-name>Controller</servlet-name>
    <servlet-class>com.cti.webgeoloc.Controller</servlet-class>
  </servlet>

</web-app>

Thanks in advance!