How do you get the currently logged in from the session object after you have logged in using the Acegi filters.
Normally I would do like this:
Then I'm using a session attribute that I've previously set.Code:HttpSession session = request.getSession(); String userName = (String) session.getAttribute("USER_NAME");
How do you do this with Acegi?


