diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml index 8adf781935..a7117a562a 100644 --- a/src/site/fml/faq.fml +++ b/src/site/fml/faq.fml @@ -169,6 +169,20 @@ org.springframework.security.AccessDeniedException: Access is denied then you have to configure these explicitly in your web.xml using the <dispatcher> element, a child element of <filter-mapping>. + + + I'm trying to use the concurrent session-control support but it won't let me log back in, even if I'm sure I've logged out and haven't exceeded the allowed sessions. + + + Make sure you have added the listener to your web.xml file. It is essential to make sure that the Spring Security session registry is + notified when a session is destroyed. Without it, the session information will not be removed from the registry. +
+  <listener>
+    <listener-classorg.springframework.security.ui.session.HttpSessionEventPublisher</listener-class>
+  </listener>    				
+    			
+
+
Common "How To" Requests