Yes. The adapter will return any exceptions back to your application AFTER any retries you have configured have been done.
Within your orchestration you can use Scope shapes to catch exceptions. In your exception handlers you can retrieve the error description to determine which way to branch.
Sample orchestrations that illustrate exception handing are included in the ActiveADAPTER Samples folder.
See the entire answer
Virtually all properties. ActiveADAPTER can update, add to, or clear all properties that are compatible with string, number and byte array data types. A number of special properties are also integrated - objectGUID and objectSid, for example. This covers virtually all the properties you can see using Active Directory Users and Computers.
If there are specific properties you wish to use that you are having trouble with, let us know!
See the entire answer
Try adding the setting PageSize="1000" to your query parameters. For example:
<ActiveDirectoryQuery><Directives WhereToBind="LDAP://CN=Users, DC=test, DC=com" Filter="(objectCategory=user)" SearchScope="onelevel" PropertiesToReturn="cn" PageSize="1000"/></ActiveDirectoryQuery>
By default Active Directory only allows for a single page of 1000 results. By explicitly setting this value multiple pages (and hence all results) are returned.
See the entire answer