• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Tomcat Server : Error filterStart

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Friends
My application is working in my old machine. Then I tried to configure the same applicatio in new machine I'm getting the following errors when I deployed in tomcat server.

Mar 30, 2008 6:48:19 PM org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart
Mar 30, 2008 6:48:19 PM org.apache.catalina.core.StandardContext start
SEVERE: Context startup failed due to previous errors.

But my aplication still working in old machine. And the new machine also has the same configuration of old machine.
Java version 1.4.,Tomcat 5.0, Struts 1.1, Spring 2.0, DB2 8.2
And my filter configuration in Web.xml
<filter>
<filter-name>FormLoginFilter</filter-name>
<filter-class>
com.anfcorp.vendorpayment.authentication.FormLoginFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>FormLoginFilter</filter-name>
<url-pattern>/j_security_check</url-pattern>
</filter-mapping>
Could you help me out to solve this problem. I'm not able to find out the error, because the same file working fine in my old machine.
Thank you.

Regards
Kasipandian.R
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My impression was that Tomcat doesn't support filtering j_security_check.
 
kasi pandian
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
j_security_check is working in my old machine. And I'm using Tomcat server only in my old machine.
 
kasi pandian
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I found the solution. In my eclipse is showing the version jdk1.5 and tomcate jdk version is 1.4. I configured the same version. Now It worked.
Regards
Kasi
 
I am going down to the lab. Do NOT let anyone in. Not even this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic