08-16-2006 11:15 AM
10-31-2006 10:13 AM
Hi,
I am trying to implement SSO with Sun Access Manager. I wrote a custom processFilter which checks for a valid Access Manager cookie. I also added my custom authentication manager to the list of the providermanager.
I added the following to authentication-service-context.html:
<bean id="amProcessingFilter" class="be.acait.cms.alfresco.auth.ui.am.AMProcessingFilter">
<property name="authenticationManager"><ref bean="authenticationManager"/></property>
</bean>
<bean id="AMAuthenticationProvider" class="be.acait.cms.alfresco.auth.provider.am.AMAuthenticationProvider" />
<bean id="authenticationManager" class="net.sf.acegisecurity.providers.ProviderManager">
<property name="providers">
<list>
<ref bean="AMAuthenticationProvider" />
<ref bean="authenticatedAuthenticationPassthroughProvider" />
<ref bean="daoAuthenticationProvider" />
</list>
</property>
</bean>
But now, how do I know Alfresco picks it up? I tried remote debugging in my code, but it seems that my code doesn't run.
Oh yes, I'm using 1.3 community edition..
Greets,
timv
11-20-2006 09:29 AM
<bean id="authenticationComponentImpl" class="org.alfresco.repo.security.authentication.AuthenticationComponentImpl">
<property name="authenticationDao">
<ref bean="authenticationDao" />
</property>
<property name="authenticationManager">
<ref bean="*****authenticationManager*****" />
</property>
<property name="allowGuestLogin">
<value>true</value>
</property>
</bean>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.