servlet-api jar proposed change

2007-11-13 Thread Simon Nash
When the embedded Tomcat server starts, it produces a series of warnings as shown in the - markings below. [java] 13-Nov-2007 11:57:56 org.apache.catalina.core.StandardEngine start [java] INFO: Starting Servlet Engine: Apache Tomcat/6.0.10 [java] 13-Nov-2007 11:57:56

Re: servlet-api jar proposed change

2007-11-13 Thread Ignacio Silva-Lepe
This sounds like a useful change to get all of our dependencies on servlet-api in sync. And, as you say, it does not seem to have any negative impact. +1 from me. Thanks On Nov 13, 2007 8:43 AM, Simon Nash [EMAIL PROTECTED] wrote: When the embedded Tomcat server starts, it produces a series of

Re: servlet-api jar proposed change

2007-11-13 Thread ant elder
Do we want to support pre-2.5 level servlet containers? If so then maybe we should use the 2.4 version so things don't inadvertently use 2.5 only APIs. ...ant On Nov 13, 2007 1:59 PM, Ignacio Silva-Lepe [EMAIL PROTECTED] wrote: This sounds like a useful change to get all of our dependencies

Re: servlet-api jar proposed change

2007-11-13 Thread Simon Nash
There is one place in binding-ws-axis2 where we use a 2.5-only method. It's in Axis2ServiceServlet.createDummyServletConfig() where we use the getContextPath() method of the ServletContext class. Is it OK to remove this method and go back to a 2.4 compile dependency? I tried doing this and the

Re: servlet-api jar proposed change

2007-11-13 Thread ant elder
IIRC that method was needed as otherwise something was getting an error when running with the 2.5 API but I can't remember the exact details, would need to test it, but it should be ignored when running in a pre-2.5 container the method being on the dummy config but not part of the implemented

Re: servlet-api jar proposed change

2007-11-13 Thread Simon Laws
On Nov 13, 2007 4:22 PM, Simon Nash [EMAIL PROTECTED] wrote: There is one place in binding-ws-axis2 where we use a 2.5-only method. It's in Axis2ServiceServlet.createDummyServletConfig() where we use the getContextPath() method of the ServletContext class. Is it OK to remove this method and

Re: servlet-api jar proposed change

2007-11-13 Thread Simon Nash
Simon Laws wrote: On Nov 13, 2007 4:22 PM, Simon Nash [EMAIL PROTECTED] wrote: There is one place in binding-ws-axis2 where we use a 2.5-only method. It's in Axis2ServiceServlet.createDummyServletConfig() where we use the getContextPath() method of the ServletContext class. Is it OK to

Re: servlet-api jar proposed change

2007-11-13 Thread Raymond Feng
Subject: Re: servlet-api jar proposed change Simon Laws wrote: On Nov 13, 2007 4:22 PM, Simon Nash [EMAIL PROTECTED] wrote: There is one place in binding-ws-axis2 where we use a 2.5-only method. It's in Axis2ServiceServlet.createDummyServletConfig() where we use the getContextPath() method