1 Reply Latest reply on May 22, 2007 11:54 AM by c_eric_ray

    Using a4j with richfaces

      Do I need to include specific a4j configuration in the web.xml file when using a4j tags with richfaces? For example, the developer guide instructs you to add the following to the web.xml file.

       <filter>
      
       <display-name>Ajax4jsf Filter</display-name>
      
       <filter-name>ajax4jsf</filter-name>
      
       <filter-class>org.ajax4jsf.Filter</filter-class>
      
       </filter>
      
       <filter-mapping>
      
       <filter-name>ajax4jsf</filter-name>
      
       <servlet-name>Faces Servlet</servlet-name>
      
       <dispatcher>REQUEST</dispatcher>
      
       <dispatcher>FORWARD</dispatcher>
      
       <dispatcher>INCLUDE</dispatcher>
      
       </filter-map>
      
       <listener>
      
       <listener-class>
      
       com.sun.faces.config.ConfigureListener
      
       </listener-class>
      
       </listener>
      


      Do I need to add this if I already have the configuration for Richfaces in my web.xml?