I'm not sure I follow, but if as your comment states you want to call the 
method from another seam managed bean try:

@In(create = true)
  | private HotelSearchingAction hotelSearchingAction

user = results.get(0);
  | Contexts.getSessionContext().set("loggedIn", true);
  | FacesMessages.instance().add("Welcome, #{user.name}");
  | // here I want to redirect to hotel search instead of displaying the main 
page
  | // need to call HotelSearchingAction.find
  | return hotelSearchingAction.find();
  | 


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

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

Reply via email to