security.xml - change this:
<bean id="authenticationManager"
class="org.acegisecurity.providers.ProviderManager">
<property name="providers">
<list>
<ref local="daoAuthenticationProvider"/>
<ref local="anonymousAuthenticationProvider"/>
<ref local="rememberMeAuthenticationProvider"/>
</list>
</property>
</bean>
To this:
<bean id="authenticationManager"
class="org.acegisecurity.providers.ProviderManager">
<property name="providers">
<list>
<ref local="daoAuthenticationProvider"/>
<ref local="anonymousAuthenticationProvider"/>
</list>
</property>
</bean>
I am open to adding/implementing some sort of common configuration
system after 2.0. For example, moving jdbc.properties and
mail.properties to config.properties and adding things like
rememberMe.enabled=true|false. Maybe even providing a database table
to persist changes.
Matt
On 4/20/07, Nathan Anderson <[EMAIL PROTECTED]> wrote:
I'm trying to figure out where the application settings are kept in
AppFuse 2.0. I'd like to turn off "Remember Me" for this particular
application and I see that login.jsp only renders the "Remember Me"
checkbox when the feature is enabled... The problem is I can't seem to
find where it is enabled.
Any hints? ;)
Thanks,
Nathan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
http://raibledesigns.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]