user « Glassfish « JSF Q&A





1. Best practice for the user authentication on JSF 2.0?    stackoverflow.com

i search for the best way how i can make a user authentication in my JSF Webproject. I have found this very good Example from BalusC at stockoverflow (by the ...

2. Custom user authentication with JSF/GlassFish    stackoverflow.com

I need to perform custom user authentication that is not provided via filling any form, but via OAuth. I use JSF 2.0, PrettyFaces 3.2.0, GlassFish v3, NetBeans 6.9.1. I need to log ...

3. Binding a User entity and a GlassFish Principal    stackoverflow.com

I have an entity class User that contains information such as username, first name, last name and a password and I have my GlassFish 3.1 server setup to perform authentication. So ...

4. jsf check user logged in    stackoverflow.com

How can I check if a user is logged in using jsf? This is how I am doing it and it's not working:

<ui:fragment rendered="#{!request.getUserPrincipal().getName().equalsIgnoreCase('anonymous')}">
    <h:outputLink value="logout">
  ...