RE: org.apache.catalina.filters.CorsFilter

2013-12-03 Thread spring
Exactly where? The full path is needed here. TOMCAT/webapps/myapp/WEB-INF/classes/org/apache/catalina/filters/CorsFilter. class Rather than mucking about with an old Tomcat version, just throw away the 3rd-party repackaged crap and install the current one from tomcat.apache.org; it will

Re: org.apache.catalina.filters.CorsFilter

2013-12-03 Thread Mark Thomas
On 03/12/2013 17:41, spr...@gmx.eu wrote: Exactly where? The full path is needed here. TOMCAT/webapps/myapp/WEB-INF/classes/org/apache/catalina/filters/CorsFilter. class Rather than mucking about with an old Tomcat version, just throw away the 3rd-party repackaged crap and install the

RE: org.apache.catalina.filters.CorsFilter

2013-12-03 Thread spring
Just wanna now why the class is not loadable as org.apache.catalina.filters.CorsFilter but as com.apache.catalina.filters.CorsFilter (different dir in classes of course). Because Tomcat prevents web applications from replacing container classes. Ah, so we do have special rules for

RE: org.apache.catalina.filters.CorsFilter

2013-11-30 Thread spring
There aren't any. Without the details of how you configured the filter, where you put the class file and the stack trace of the exception we can't help you. Class is in WEB-INF/classes of the webapp. SEVERE: Exception starting filter CorsFilter java.lang.ClassNotFoundException:

RE: org.apache.catalina.filters.CorsFilter

2013-11-30 Thread Caldarale, Charles R
From: spr...@gmx.eu [mailto:spr...@gmx.eu] Subject: RE: org.apache.catalina.filters.CorsFilter There aren't any. Without the details of how you configured the filter, where you put the class file and the stack trace of the exception we can't help you. Class is in WEB-INF/classes

Re: org.apache.catalina.filters.CorsFilter

2013-11-28 Thread Mark Thomas
On 28/11/2013 12:59, spr...@gmx.eu wrote: Hi, I 'm using the CorsFilter in Tomcat 7.0.47, all good. Then tried it in 7.0.37 - no luck, only available since 7.0.41. OK, I put the class into the war file and expected that it is loadable now. But I get a ClassNotFound. Guessing some special