security « EJB « JSP-Servlet Q&A





1. Calling a SLSB with Seam security from a servlet    stackoverflow.com

I have an existing application written in SEAM that uses SEAM Security (http://docs.jboss.org/seam/2.1.1.GA/reference/en-US/html/security.html). In a stateless EJB, I might find something like this:

@In
Identity identity;

... 

if(identity.hasRole("admin"))
  throw new AuthException();
As far as ...

4. how does ejb provede security?    coderanch.com

6. EJB security Question    coderanch.com

I have an EJB that uses a SecurityDomain and uses the @RolesAllowed annotation to secure the bean. When a user comes into that bean it goes through the login module as it should and creates all the roles and properly checks that the user has the correct Role(s). So everything works great from that end. My problem is that I have ...





11. Security in EJB    coderanch.com

14. ejb security    coderanch.com

Hello I have a glassfish 3.1 project that uses application client to launch a netbeans platform application. This is fairly time-consuming to download and launch so I would like for different users to be able to login/logout of the client without having to close and relaunch it. I am fairly new to ejb security so please forgive me if I am ...