Re: difference between TC5.5 and TC6

2008-03-10 Thread Len Popp
The abstract base class org.apache.catalina.valves.ValveBase makes it easy to implement a Valve. See the Tomcat 6 javadocs. Also, there are several valves that you can look at in the Tomcat source code, such as org.apache.catalina.valves.AccessLogValve. -- Len On Mon, Mar 10, 2008 at 7:41 AM, ami

Re: difference between TC5.5 and TC6

2008-03-10 Thread amit kumar
We intend to develop tomcat valves specific to our product, I found information about APIs available and samples from the internet and book. But I am not able to locate any material over internet or in books for the Tomcat 6. It looks like the valve development specific classes have been refactored

Re: difference between TC5.5 and TC6

2008-03-06 Thread Konstantin Kolinko
And also there is http://tomcat.apache.org/migration.html > > > > Is there any documentation available where I can read about > > all the changes that has happened from TC 5 to TC6. > > > http://tomcat.apache.org/tomcat-6.0-doc/changelog.html > --

RE: difference between TC5.5 and TC6

2008-03-05 Thread Caldarale, Charles R
> From: amit kumar [mailto:[EMAIL PROTECTED] > Subject: Re: difference between TC5.5 and TC6 > > Is there any documentation available where I can read about > all the changes that has happened from TC 5 to TC6. http://tomcat.apache.org/tomcat-6.0-doc/changelog.html

Re: difference between TC5.5 and TC6

2008-03-05 Thread amit kumar
Is there any documentation available where I can read about all the changes that has happened from TC 5 to TC6. I have been facing problem in figuring out the changed structure of classes and or replaced classes if any.(specifically for developing valves for tomcat 6) Regards. Amit On Wed, Mar 5

Re: difference between TC5.5 and TC6

2008-03-05 Thread David Smith
Regarding specs, tomcat 6 also supports servlet spec 2.5. Regarding tomcat specific stuff, the default folder layout with respect to where to place jar files was optimized slightly. --David Markus Schönhaber wrote: Edward Quick wrote: I have a question about the difference between TC

Re: difference between TC5.5 and TC6

2008-03-05 Thread Markus Schönhaber
Edward Quick wrote: > I have a question about the difference between TC 5.5 and 6. We use > 5.5 as our standard, but a vendor we are working with is insisting > their webapp will only work with TC6 because they have coded to JSP > standard 2.2 (may be 2.1?) JSP 2.1 is supported by Tomcat 6 (and i

difference between TC5.5 and TC6

2008-03-05 Thread Edward Quick
I have a question about the difference between TC 5.5 and 6. We use 5.5 as our standard, but a vendor we are working with is insisting their webapp will only work with TC6 because they have coded to JSP standard 2.2 (may be 2.1?) I have a couple of questions about this: Where do I go to check