Try OpenEdge Now
skip to main content
Administration
REST Administration : REST Management Agent and REST Web Application Security Configurations : Using LDAP in security configurations : Configure the LDAP security configuration model
 
Configure the LDAP security configuration model
After choosing the LDAP security configuration model in the in Choose and apply an LDAP security configuration, you must configure the LDAP security model, appSecurity-XXXX-ldap.xml, as instructed in the following table:
Table 86. LDAP security configuration settings
Find
Update
<ldap-server id="PrimayLDAP"
 url="ldap://enter_hostname:389/root_dn_here"
 manager-dn="uid=admin,ou=system"
 manager-password="admin" />
The LDAP id, url, manager-dn (Account manager domain name), and manager-password (Account manager's password) fields for your REST Web application to identify and authenticate your LDAP server accounts.
<authentication-manager
id="RestApplicationtAuth" >
<ldap-authentication-provider
server-ref="PrimayLDAP"
group-role-attribute="cn"
role-prefix="ROLE_"
group-search-filter="(member={0})"
group-search-base=""
user-search-base=""
user-search-filter="(uid={0})" />
</authentication-manager>
All the properties of the LDAP authentication manager based on the design and implementation of your directory services.
After using LDAP for your REST Web application, you can also extend CORS support using the instructions provided in Extending CORS support.