2 Replies Latest reply on Jun 15, 2008 6:06 PM by eicki

    Rich Faces +IBM RSA 7.0(Eclipse 3.2)

      I followed your tutorial and included
      richfaces-api-3.2.1.GA.jar
      richfaces-impl-3.2.1.GA.jar
      richfaces-ui-3.2.1.GA.jar into my WEB-INF/lib library
      along with icu4j_3_4_1.jar, jsf-ibm.jar(already in there for jsf project).
      I updated my WEB.xml with
      <context-param>
      <param-name>org.richfaces.SKIN</param-name>
      <param-value>blueSky</param-value>
      </context-param>

      <display-name>RichFaces Filter</display-name>
      <filter-name>richfaces</filter-name>
      <filter-class>org.ajax4jsf.Filter</filter-class>

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

      Still Im getting the error
      java.lang.NoClassDefFoundError: Error while defining class: org.richfaces.component.UIPanelMenuGroup
      This error indicates that the class: javax.faces.component.ActionSource2
      could not be located while defining the class: org.richfaces.component.UIPanelMenuGroup
      This is often caused by having the class at a higher point in the classloader hierarchy
      Dumping the current context classloader hierarchy:
      ==> indicates defining classloader
      *** indicates classloader where the missing class could have been found
      ==>[0]
      com.ibm.ws.classloader.CompoundClassLoader@a780a78

      Help me resolve this