Return-Path: Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 89943 invoked from network); 14 Sep 2000 13:19:06 -0000 Received: from dfa.state.ny.us (HELO snysdssmail6.dfa.state.ny.us) (209.4.93.35) by locus.apache.org with SMTP; 14 Sep 2000 13:19:06 -0000 Received: by snysdssmail6.dfa.state.ny.us with Internet Mail Service (5.5.2650.21) id ; Thu, 14 Sep 2000 09:19:38 -0400 Message-ID: <354AC7E1A725D411ABCA0060943F2A6EDA7709@sdss3.dfa.state.ny.us> From: "Braswell, Sy " To: "'tomcat-user@jakarta.apache.org'" Subject: load-on-startup Date: Thu, 14 Sep 2000 09:19:36 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N i have a connection pool servlet that i would like loaded when tomcat starts. i have tried using the following syntax in the web.xml file: berm.search.ConnectionPool 1 1) im not sure if the ConnectionPool.class is suppose to be on the path /usr/local/tomcat/classes/berm/search/ConnectionPool.class or /usr/local/tomcat/webapps/bermPatSearch/WEB-INF/classes/berm/search/Connecti onPool.class if i do not put it in the path /usr/local/tomcat/classes/berm/search/ConnectionPool.class i get the error: cannot load servlet name: ConnectionPool cannot load servlet name: ConnectionPool cannot load servlet name: ConnectionPool cannot load servlet name: ConnectionPool cannot load servlet name: ConnectionPool cannot load servlet name: ConnectionPool if i do put it on the path: /usr/local/tomcat/classes/berm/search/ConnectionPool.class i do not get the above error but it does not load either. 2) which xml file does is go in? /usr/local/tomcat/conf/web.xml or /usr/local/tomcat/webapps/bermPatSearch/WEB-INF/web.xml i have tried all combinations of above with no luck... any ideas? is there another parameter that needs to be set?