These are the necessary configuration steps for “Authentication Module Active Directory user account (Manual Input)”:
Basically, for all authentication modules, a system user has to be determined, which is used to access Identity Manager data. The difference between the authentication modules is in how this system user is determined.
1. An Identity (Employee) linked to an AD Account is required, but not necessarily with a system user assigned. The latter depends on another configuration step:
2. An authentication domain has to be configured:
3. The desired authentication module has to be enabled in Designer:
4. Finally, it is required to configure for every tool separately, for which the authentication method is required, how the system user should be determined:
It is a very common pitfall to forget this step and there will be no specific error message pointing to this missing configuration for the above mentioned reasons.
Here are some example configurations:
This configuration would result in everyone logged in as viadmin:
<DialogUserDetect>
<Usermappings>
<Usermapping
DialogUser = "viadmin"
/>
</Usermappings>
</DialogUserDetect>
This configuration would result in everyone who is designated as VIP logged in as viadmin. Everyone else as viITShop:
<DialogUserDetect>
<Usermappings>
<Usermapping
DialogUser = "viadmin"
Selection = "select 1 from Person where UID_Person = %uid% and isvip=1"
/>
<Usermapping
DialogUser = "viITShop"
/>
</Usermappings>
</DialogUserDetect>
This configuration would result in everyone logged in as viadmin, who has this system user assigned. All other Employees would be rejected. If the requirement is to use multiple system users, it's necessary to configure an appropriate block in this configuration for every system user
<DialogUserDetect>
<Usermappings>
<Usermapping
DialogUser = "viadmin"
Selection = "select 1 from Person where UID_Person = %uid% and UID_DialogUser in (select UID_DialogUser from DialogUser where UserName = 'viadmin')"
/>
</Usermappings>
</DialogUserDetect>
© ALL RIGHTS RESERVED. 使用条款 隐私 Cookie Preference Center