This is an Alpha release intended as a preview of the application. Directory.aspx functionally complete. This allows you to list Active Directory Users and Contacts, with a configurable LDAP query and returned properties in the web.config. It also allows for export XLS (although Excel will tell you it isn't a "real" XLS file). This release solves an error with user impersonation and loading the Active Directory tree.
Modify the following settings in the web.config to get started:
<appSettings> <add key="AdPath" value="LDAP://Nauplius"/> {...} </appSettings>
<connectionStrings> <!-- Enter the Forest Root FQDN here. --> <add name="ActiveDirectory" connectionString="LDAP://nauplius.net"/> </connectionStrings>
|