Automatically Adding Users from AD
You can automatically create / update users from Microsoft AD in FintechOS using a configuration file.
NOTE Automatically creating users from AD will remove the existing business units and security roles from FintechOS and add the ones from AD as provided in the configuration file. If you want to keep the system user as is, you should make additional settings. For information on the additional settings, see Preserve System User’s Business Unit and Security Roles.
IMPORTANT! In FintechOS versions prior 18.2.8, ,getting from the Active Directory (AD) the groups to whom a user belongs to did not work smoothly; therefore, there might be situations in which wrong security roles were applied to users. With version 18.2.8, the existing configurations for mapping AD groups-roles (specified in the ~\ADUserConfiguration.xml file) might not work as it worked in previous versions of FintechOS.
To automatically create/update users in FintechOS using a configuration file, follow these steps:
- In the web.config file fo your WebApp, add the following setting:
Copy
<appSettings>
...
<add key="EBSADAuthAutoCreateUsers" value="true"/>
...
</appSettings> - In an xml file, create the mapping between the AD groups and the security roles and business units fromFintechOS. Name the file ADUserConfiguration.xml.
Overwrite the Business Unit from FintechOS with the business unit from ADCopy
<ADUserConfiguration>
<SecurityGroup>
<Name>`AD Group Name`</Name>
<DefaultBusinessUnitName>`FTOS Business Unit Name`</DefaultBusinessUnitName>
<SecurityRoleName>`FTOS Security Role Name`</SecurityRoleName>
</SecurityGroup>
</ADUserConfiguration> - In the root of the WebApp, add the ADUserConfiguration.xml file previously created.