security « Seam « JPA Q&A





1. Seam - Problems with IdentityManager.isUserEnabled()    stackoverflow.com

I have a JBoss Seam app that leverages Seam's IdentityManager and JpaIdentityStore components for handling user account creation and authentication. My components.xml file is setup correctly, and I'm able to ...

2. Configuration error "security:jpa-token-store"(SEAM2.1.0.SP...    seamframework.org

The new security module is very good. But there is a configuration error about at the reference guide document.I cannot use at components.xml(SEAM2.1.0.SP1). When I type this tag at components.xml then Eclipse validate failed and deploy failed also. The following is Eclipse validate error info:cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'security:jpa-token-store'. ...

3. seam-security and picketlink-idm-hibernate    seamframework.org

I've been playing around with seam-security in a tomcat6 environment using maven as my build tool. I opted to use picketlink's hibernate identity store implementation. It appears that the 1.5.0.Alpha02 version of picketlink-idm-hibernate.jar is not compatible with the version of Hibernate that is served up by the seam3 bom (3.6.0.Final). It serves up a class cast exception on line 520 of ...

4. Seam Security with hibernate session won't work.    seamframework.org

I guess I need to clarify myself: I need to know how to configure the component.xml in order to support both seam security and hibernate session. The functionalities i want to achieve are 2: 1. inject @In private EntityManager entityManager; to my component that handle user accounts. 2. inject @In private Session myDatabase; to other classes Basically what i need is ...