I just upgraded to 2.0.1GA and overrode facesSecurityEvents. 
addLoginSuccessfulMessage() which used to be in identity so I could suppress 
the "Welcome, user" message.

>From my logs, I can tell authenticator.authenticate is only being called once 
>but addLoginSuccessfulMessage(), the event handler for 
>EVENT_LOGIN_SUCCESSFUL(org.jboss.seam.security.loginSuccessful) is being 
>called twice. What gives?



  | @Name("org.jboss.seam.security.facesSecurityEvents")
  | @Scope(ScopeType.APPLICATION)
  | @Install(precedence = APPLICATION, classDependencies = 
"javax.faces.context.FacesContext")
  | @BypassInterceptors
  | @Startup
  | public class SecurityEventsHandler extends 
org.jboss.seam.security.FacesSecurityEvents {
  | 
  |     @Logger Log log;
  |     
  |     @Override @Observer(Identity.EVENT_LOGIN_SUCCESSFUL)
  |     public void addLoginSuccessfulMessage()
  |     {
  |        log.info("\n\n\n>>>>>>>>>>>>>>>>>>>>EVENT_LOGIN_SUCCESSFUL 
handled<<<<<<<<<<<<<<<<<<<<<<<<\n\n\n");
  |     }
  |       
  |     
  | }
  | 

My identity.login ff:

@Override
  |     public String login() {
  |         super.login();
  |         return loginFailed ? null : this.destination;
  |     }

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4125822#4125822

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4125822
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to