2 Replies Latest reply on Oct 16, 2008 2:28 PM by lstates

    unable to deploy richfaces 3.2.2. noClassDefFoundError: org/

    lstates

      I am unable to deploy a class that uses the UploadEvent class from richfaces.

      Background:
      jBoss 4.2
      Seam 2.0.0
      Richfaces 3.2.2.

      The jars are correctly located in my classpath and are being deployed with my ear file. I verified the jar does contain the class.

      Example

      import org.richfaces.event.UploadEvent;
      
      @Name("fileUploadBean")
      @Scope(ScopeType.SESSION)
      public class FileUploadBean
      {
      
      public void listener(UploadEvent event) throws Exception {
      ….
      }
      
      }