RE: compiled header filter on tomcat 5.5

2006-12-05 Thread Caldarale, Charles R
From: Ian H [mailto:[EMAIL PROTECTED] Subject: compiled header filter on tomcat 5.5 SEVERE: Error filterStart 5/12/2006 09:03:50 org.apache.catalina.core.StandardContext start SEVERE: Context startup failed due to previous errors What else is in the log? (The underlying cause

Re: compiled header filter on tomcat 5.5

2006-12-05 Thread Ian H
On 12/5/06, Caldarale, Charles R [EMAIL PROTECTED] wrote: SEVERE: Error filterStart What else is in the log? (The underlying cause usually appears _after_ the above somewhat misleading message.) Hi Chuck, Thank you for your quick reply! The whole stdout.log follows...(I see that for

Re: compiled header filter on tomcat 5.5

2006-12-05 Thread David Smith
I see the prob here -- your code was compiled for java version 1.5 and you are using an older jvm to run tomcat. Match up and build your code on the same java version your server is using. I typically have Netbeans build to 1.4 just to stay on the safe side (plus I'm not using any of the 1.5

RE: compiled header filter on tomcat 5.5

2006-12-05 Thread Caldarale, Charles R
From: Ian H [mailto:[EMAIL PROTECTED] Subject: Re: compiled header filter on tomcat 5.5 This seems to say simply that there's a version incompatibility (with the class version/libraries used to build it) -- is this correct? Correct - your ResponseHeaderFilter class was compiled with a 1.5

Re: compiled header filter on tomcat 5.5

2006-12-05 Thread Ian H
On 12/5/06, David Smith [EMAIL PROTECTED] wrote: I see the prob here -- your code was compiled for java version 1.5 and you are using an older jvm to run tomcat. Match up and build your code on the same java version your server is using. Thanks again for such quick responses! I had thought

Re: compiled header filter on tomcat 5.5

2006-12-05 Thread Ian H
Charles, David, thank you both very much! Bingo, compiled, and working :) - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]