Active Directory Integration
Excerpt |
---|
Before you can set up Active Directory or Windows Domain authentication you need to register NTAdmin.dll to enable ColdFusion to talk to Active Directory. |
Note |
---|
This could also be done using Active Directory's LDAP interface. |
...
- create a new FarCry user directory (<yourApp> / config / _dmSecUserDirectories.cfm) with typename of "ADSI" and the domain of your active directory eg
Code Block | ||
---|---|---|
| ||
Application.dmSec.UserDirectory.AD= StructNew(); |
...
temp = Application.dmSec.UserDirectory.AD; |
...
temp.type="ADSI"; |
...
temp.domain="mydomain.com"; |
- update your application scope (append updateapp=1 to your url)
...