From reading the documentation, it seems like it should be possible to chain authentication providers like the following:
However, the only way to authenticate a user against the "jaasAuthenticationProvider" is to comment out the "daoAuthenticationProvider". Any ideas why?Code:<bean id="authenticationManager" class="net.sf.acegisecurity.providers.ProviderManager"> <property name="providers"> <list> <ref local="daoAuthenticationProvider"/> <ref local="jaasAuthenticationProvider"/> </list> </property> </bean>
Thanks,
Matt


