07-19-2013 12:13 PM
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<!– The authentication component. –>
<!– Jass authentication - most of the config goes somewhere else –>
<bean id="authenticationComponent"
class="org.alfresco.repo.security.authentication.jaas.JAASAuthenticationComponent"
parent="authenticationComponentBase">
<property name="realm">
<value>DEFAULT.REALM</value>
</property>
<property name="nodeService">
<ref bean="nodeService" />
</property>
<property name="personService">
<ref bean="personService" />
</property>
<property name="transactionService">
<ref bean="transactionService" />
</property>
</bean>
<!– DAO that rejects changes - JAAS is read only at the moment. –>
<!– It does allow users to be deleted with out warnings from the UI. –>
<!– The user is still present in JAAS, only the personal information is removed from alfresco. –>
<bean id="authenticationDao" class="org.alfresco.repo.security.authentication.DefaultMutableAuthenticationDao" >
<property name="allowSetEnabled" value="true" />
<property name="allowGetEnabled" value="true" />
<property name="allowDeleteUser" value="true" />
<property name="allowCreateUser" value="true" />
</bean>
</beans>
<Realm className="org.apache.catalina.realm.JNDIRealm"
connectionURL="ldap://XXXX.XXXX.XXX:389/"
userPattern="uid={0},ou=People,dc=XXXX,dc=fr"
roleName="cn"
roleBase="ou=Applications,dc=XXXX,dc=fr"
roleSearch="(uniqueMember={1})"
userSubtree="true"
roleSubtree="true"
/>
08-15-2013 03:28 AM
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.