Results 1 to 2 of 2

Thread: SWF + Spring Securtiy with userDetailsService implementation Vs Acegi Security

  1. #1
    Join Date
    Feb 2007
    Posts
    143

    Default SWF + Spring Securtiy with userDetailsService implementation Vs Acegi Security

    Hi,

    I have used acegi in my previous application with out SWF.
    I am trying to implement Spring security and also SWF.

    My acegi has the following configurations

    Code:
    <bean id="acegiFilterChainProxy" class="org.acegisecurity.util.FilterChainProxy">
    		<property name="filterInvocationDefinitionSource">
    			<value>
    				CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
    				PATTERN_TYPE_APACHE_ANT
    				/**=httpSessionContextIntegrationFilter,log4jMDCUserFilter,securityRequestFilter,exceptionTranslationFilter
    			</value>
    		</property>
    
    	</bean>
    But in the spring security examples I do not see all of these filters. Do I need these??

    Thanks
    Vinaya

  2. #2
    Join Date
    Jul 2008
    Posts
    4

    Default

    You can read the reference about filter chain proxy like in acegi here:
    http://static.springsource.org/sprin...er-chain-proxy

    In the example, security namespace configuration was used instead. More about this:
    http://static.springsource.org/sprin...ns-config.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •