Re: ServletContextListener problem

2005-03-05 Thread Mark Thomas
This is bug 33463 that has been fixed in CVS and is included in 5.5.8 Mark Glenn R. Golden wrote: I'm using Spring 1.1.4 and Tomcat 5.5.7. I have a webapp with a ServletContextListener based on Spring's ContextLoaderListener. The problem I think I'm seeing is that when the listener's

RE: ServletContextListener problem

2003-06-27 Thread Shapira, Yoav
Howdy, You have a DTD DOCTYPE mismatch. Your web.xml is fine for a 2.3 container, just change the 2.2 to 2.3 in the DOCTYPE. Yoav Shapira Millennium ChemInformatics -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 2:17 PM To: Tomcat

RE: ServletContextListener problem

2003-06-27 Thread Raible, Matt
You have 2.2 in the first part of your DTD: !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN http://java.sun.com/dtd/web-app_2_3.dtd; Change it to: !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN

RE: ServletContextListener problem

2003-06-27 Thread augusto . guagliano
:21 Please respond to Tomcat Users List To: 'Tomcat Users List' [EMAIL PROTECTED] cc: Subject:RE: ServletContextListener problem You have 2.2 in the first part of your DTD: !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN