Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

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
title./config/_dmSecUserDirectories.cfm

 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)

...