Yes, this is because of the JSF lifecycle for non-faces requests (there is no action). I don't think you can solve this with a NavigationHandler - the NavigationHandler is only called to translate an action outcome to a viewid. When you hit main.seam directly, you already know the viewid.
I believe you *can* solve it with a PhaseListener, but you will need to do something like this: UIViewRoot viewRoot = context.getApplication().getViewHandler() | .createView( context, "login.jsp" ); | context.setViewRoot(viewRoot); Or, perhaps, something like this: String url = context.getApplication().getViewHandler().getActionURL( context, viewId ); | url = encodeConversationId(url); | ExternalContext externalContext = context.getExternalContext(); | externalContext.redirect( externalContext.encodeActionURL(url) ); | context.responseComplete(); Note that I have not tried either thing. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930627#3930627 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3930627 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
