diff --git a/src/docbkx/namespace-config.xml b/src/docbkx/namespace-config.xml
index 8b1c607e5d..f6c109415b 100644
--- a/src/docbkx/namespace-config.xml
+++ b/src/docbkx/namespace-config.xml
@@ -357,7 +357,16 @@
Concurrent Session Control
If you wish to place constraints on a single user's ability to log in to your application,
- Spring Security supports this out of the box with the following simple addition:
+ Spring Security supports this out of the box with the following simple additions. First you need to add the
+ following listener to your web.xml file to keep Spring Security updated about
+ session lifecycle events:
+
+
+ org.springframework.security.ui.session.HttpSessionEventPublisher
+
+]]>
+ Then add the following line to your application context:
...