Issue accessing Filters 2006-11-20 - By James Crosson
Back I am having a bear of a time with Tomcat Filters,
I've got the following in my web.xml:
<filter> <filter-name>Account Filter</filter-name> <filter-class>com.ZZZ.view.filters.AccountFilter2</filter-class> </filter> <filter-mapping> <filter-name>Account Filter</filter-name> <url-pattern>/*</url-pattern> <dispatcher>REQUEST</dispatcher> </filter-mapping>
AccountFilter2 is in /shared/classes/com/ZZZ/view/filters/AccountFilter2 directory, and is a succesfully compiled java class.
When I try to start Tomcat, before ever sending a request I see
Nov 20, 2006 12:07:07 PM org.apache.catalina.core.StandardContext start SEVERE: Error filterStart Nov 20, 2006 12:07:07 PM org.apache.catalina.core.StandardContext start SEVERE: Context [/manager] startup failed due to previous errors
But thereis nothing else to offer me any guidance of the error.
What I am trying to accomplish is send all requests first to the "Account Filter." Right now the filter does not do very much, as I am trying to first get this working.
Any help would be greatly appreciated, James
-- http://www.JamesCrosson.net
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ To start a new topic, e-mail: users@(protected) To unsubscribe, e-mail: users-unsubscribe@(protected) For additional commands, e-mail: users-help@(protected)
|
|