1 Reply Latest reply on May 5, 2009 5:08 AM by ilya_shaikovsky

    running richfaces in weblogic 8.1 - web.xml configuration pr

    hr_k

      I'am trying to setup richfaces for weblogic 8.1 but I have
      problems with the configurations of web.xml.

      I have to define a filter like this:

      <!-- Defining and mapping the RichFaces filter -->
      
      <filter>
       <display-name>RichFaces Filter</display-name>
       <filter-name>richfaces</filter-name>
       <filter-class>org.ajax4jsf.Filter</filter-class>
      </filter>
      
      <filter-mapping>
       <filter-name>richfaces</filter-name>
       <servlet-name>Faces Servlet</servlet-name>
       <dispatcher>REQUEST</dispatcher>
       <dispatcher>FORWARD</dispatcher>
       <dispatcher>INCLUDE</dispatcher>
      </filter-mapping>


      The problem is dispatcher is a part of J2EE 1.4 spec and weblogic 8.1 uses J2EE 1.3 spec.