1 Reply Latest reply on Aug 10, 2007 7:24 PM by ishabalov

    SEVERE: Error filterStart when deployed ajax4jsf onto tomcat

    terume

      Hi,

      I tried to add ajax4jsf filter onto my web application using tomcat 6, it works fine on tomcat 5, but when I deployed it onto tomcat 6, the error message looks like:
      org.apache.catalina.core.StandardContext start
      SEVERE: Error filterStart
      org.apache.catalina.core.StandardContext start
      SEVERE: Context startup failed due to previous errors

      Are there any difference between these two version's web.xml file? or I put the Filter configuration in the wrong place? I've already had ajax4jsf jar in WEB-INF/lib directory.

      Here is my web.xml file:
      =======================
      <?xml version="1.0"?>
      <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
      Empty web.xml file for Web Application
      <context-param>
      <param-name>javax.faces.CONFIG_FILES</param-name>
      <param-value>/WEB-INF/faces-config.xml</param-value>
      </context-param>
      <context-param>
      <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
      <param-value>server</param-value>
      </context-param>
      <context-param>
      <param-name>org.ajax4jsf.COMPRESS_SCRIPT</param-name>
      <param-value>false</param-value>
      </context-param>
      <context-param>
      <param-name>org.ajax4jsf.SKIN</param-name>
      <param-value>#{skinBean.skin}</param-value>
      </context-param>

      <filter-name>ajax4jsf</filter-name>
      <filter-class>org.ajax4jsf.Filter</filter-class>
      <init-param>
      <param-name>forceparser</param-name>
      <param-value>false</param-value>
      </init-param>

      <filter-mapping>
      <filter-name>ajax4jsf</filter-name>
      <servlet-name>Faces Servlet</servlet-name>
      FORWARD
      INCLUDE
      REQUEST
      </filter-mapping>

      <servlet-name>Faces Servlet</servlet-name>
      <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
      <load-on-startup>1</load-on-startup>

      <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.html</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.jsf</url-pattern>
      </servlet-mapping>
      <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
      <jsp-config>
      <jsp-property-group>
      <url-pattern>*.htm</url-pattern>
      </jsp-property-group>
      </jsp-config>
      <login-config>
      <auth-method>BASIC</auth-method>
      </login-config>
      </web-app>
      ====================

      Thanks.