I have a web application that is secured totally by the Weblogic container. Now I have to list the currently logged in users. I have to use Spring Security 2.0.4 for that
This have be done here: http://krams915.blogspot.com/2010/12/spring-security-mvc-querying.html
Enjoy :)
The problem with the above mentioned configuration is that none of the beans are responsible for putting data into the SessionRegistry
. The session events are published in the application, but more beans are needed so that authentications be put into the registry, for example an AuthenticationManager
should be configured. Without this the SessionRegistry
stays always empty.