Hello, I've installed Tomcat 5.0.28 on a Unix System and our applications came up without a problem. However, the servlets that we have written for these Apps are not working. They worked fine with TC4.1.12.
Please help! Here is an example of one of our web.xml files. Did something else change with Tomcat 5.0? # cat web.xml <?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>AutoTime - Shop Floor Data Colection</display-name> <description> For Development Only </description> <context-param> <param-name>dbInstanceName</param-name> <param-value>wdsdev8</param-value> </context-param> <servlet> <servlet-name>AtTransSrv</servlet-name> <servlet-class>attrans.AtTransSrv</servlet-class> </servlet> <resource-ref> <res-ref-name>jdbc/wdsdev8</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref> </web-app> Thanks! Chris --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]