2 Replies Latest reply on Feb 27, 2008 6:50 AM by sriramsudheer

    propertyNotFoundException

    sriramsudheer

      Hai All,
                  I am using seam1.2 and i have a seam component. It has list of objects as property. I am using JSF and richfaces. I am using the following tag
      <rich:dataTable value="#authenticatedFunctionList.authFunctionList}" var="authenticatedfunction" >     
      </rich:dataTable>


      I am getting PropertyNotFound exception
      and The following is seamComponent code:


      @Stateful
      @Name("authenticatedFunctionList")
      @Scope(ScopeType.EVENT)
      public class AuthenticatedFunctionList implements IAuthenticatedFunctionLst, Serializable

      private List<Function> authFunctionList = new ArrayList<Function>(0);

      public List<Function> getAuthFunctionList() {
                return authFunctionList;
           }


      Please tell me if i am missing any thing....