This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: Ending http session before request's lifecycle endmarcio.dantas Nov 18, 2009 10:32 PM (in response to marcio.dantas)Well, just to share here the 'solution' I used. I ended up using a page action as below: <page view-id="/login.xhtml"> <action execute="#{org.jboss.seam.core.manager.killAllOtherConversations()}"/> <action execute="#{loginManager.autenticateUser}"/> </page>This kills all conversations on the users session before the user's autenthication, which opens a new long running conversation. It doesn't really cleans the http session, but it's better than nothing and webSession.invalidate cannot be applied here. thats it 
