[jboss-user] [JBoss Seam] - Re: Problems with Seam Security

2007-02-07 Thread stony
Is it planned to integrate seam with container security in future ? What about the jaasConfigName attribute ? security:identity authenticate-method=#{myAuthenticator.authenticate} jaasConfigName=myDomain / After deploying this (using the last nightly build 06-02-07) and using the Identity

[jboss-user] [JBoss Seam] - Re: Problems with Seam Security

2007-02-07 Thread [EMAIL PROTECTED]
It is planned for a future release. Setting the jaasConfigName property will allow Seam to authenticate using a different jaas configuration (other than the built-in one), it won't allow the container to authenticate using Seam security. View the original post :

[jboss-user] [JBoss Seam] - Re: Problems with Seam Security

2007-02-06 Thread [EMAIL PROTECTED]
Seam security only uses JAAS for authentication, and does not integrate with container security at this point in time. I'm guessing you are using the @RolesAllowed annotation on your bean? If so, you need to replace it with @Restrict (a Seam annotation) - see the docs for usage. View the