Re: [appfuse-user] Initializing session beans

2007-05-30 Thread Matt Raible
You can create an ApplicationEventListener that listens for AuthenticationSuccessEvent. In order to get the request/session anywhere in your application, you can add Spring's RequestContextListener to your web.xml. From there, you can cast RequestContextHolder.getRequestAttributes to ServletReques

[appfuse-user] Initializing session beans

2007-05-30 Thread sionsmith
Hi everyone I'm implementing a bread crumb trail in the main menu. I have a session backing bean which an a included page references. My question is how do i create this bean and put it into their session when they log in. I've got my own implementation of the AuthenticationManager but i dont see