From c185c5bfb8ef78cdeea1e7b50f651b507aa43c41 Mon Sep 17 00:00:00 2001 From: Scott McCrory Date: Tue, 8 Nov 2005 00:04:33 +0000 Subject: [PATCH] Fixed "FilterToBeProxy" typo --- doc/docbook/acegi.xml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/doc/docbook/acegi.xml b/doc/docbook/acegi.xml index 0aaab4d419..e6dddd8440 100644 --- a/doc/docbook/acegi.xml +++ b/doc/docbook/acegi.xml @@ -1243,7 +1243,7 @@ public aspect DomainObjectInstanceSecurityAspect implements InitializingBean { ApplicationContext every time a HttpSession commences or terminates. This is critical, as it allows the SessionRegistryImpl to - be notified when a session ends. + be notified when a session ends. You will also need to wire up the ConcurrentSessionControllerImpl and refer to it @@ -1691,13 +1691,15 @@ public aspect DomainObjectInstanceSecurityAspect implements InitializingBean { In summary, once the user has authenticated through Siteminder, their header-loaded request will be brokered by - filterChainProxy to authenticationProcessingFilter, which in turn + filterChainProxy to + authenticationProcessingFilter, which in turn will grab the user's identity from the SM_USER request header. The - user's identity will then be passed to the authenticationManager and - finally daoAuthenticationProvider will do the work of authorizing the user - against back-end databases, etc. and loading the UserDetails - implementation with roles, username and any other property you deem - relevant. + user's identity will then be passed to the + authenticationManager and finally + daoAuthenticationProvider will do the work of + authorizing the user against back-end databases, etc. and loading + the UserDetails implementation with roles, + username and any other property you deem relevant. @@ -4922,7 +4924,7 @@ INSERT INTO acl_permission VALUES (null, 6, 'scott', 1); FilterToBeanProxy or FilterChainProxy, which is discussed in the previous sections. It is recommended that a single - FilterToBeProxy proxy through to a single + FilterToBeanProxy proxy through to a single FilterChainProxy for each application, with that FilterChainProxy defining all of the Acegi Security Filters.