0 Replies Latest reply on Oct 18, 2010 9:00 AM by honers

    Seam Identity Login Fails With More Than One User In User Table?

    honers

      I am having a strange problem when using the built in Seam login/identity functionality.  With only one user in my user table, I am able to authenticate correctly using the identity.login action. 


      However, when I add more users to the user table, I am unable to authenticate ANY of the users, even the one that I was previously able to authenticate when there was only one user in the table. Any help is GREATLY appreciated.  I am totally stuck at this point.


      For simplicity in testing I am using a VERY basic setup in my User entity.  My Seam version is 2.2.0 GA and JBoss 5.1.0 GA.  I am deploying to a war. 


      USER PROPERTIES:




      @UserPrincipal
      @Column(unique = true)
      private String userName;
      
      @UserPassword(hash="none")
      private String password;
      
      @UserEnabled
      private boolean enabled;
      
      @UserRoles
      @OneToMany(mappedBy = "user")
      private Set<UserRoleVO> userRoles = new HashSet<UserRoleVO>(0);