Thank you for the answer. If I get it right then:
As in chaining-authentication-context.xml.sample.
But do you mean that, if we add the authenticationComponent in this file,
<bean id="authenticationComponent" class="org.alfresco.repo.security.authentication.ChainingAuthenticationComponentImpl">
<property name="authenticationComponents">
<list>
<ref bean="NTLMAuthenticationComponent"/>
</list>
</property>
<property name="mutableAuthenticationComponent">
<ref bean="authenticationComponentImplAlfresco"/>
</property>
</bean>
And that this bean NTLMAuthenticationComponent must be the name of the bean declared/configured in ntlm-authentication-context:
<bean id="NTLMAuthenticationComponent" class="org.alfresco.repo.security.authentication.ntlm.NTLMAuthenticationComponentImpl">
<property name="useLocalServer">
<value>false</value>
</property>
….
(this setup brings about configuration errors).
Please confirm that this is the way to go.
Jos