...
-
CoreOne Database Service
- New
readonly_email
column was added oncore_identity
table. It will be updated for emails that are not configured withrexexp
oncore_identity_mail_prio_mapping
table. For others - it will be updated once the UpdateIdentityTask has run or you can run your own script.
...
CoreOne Universal Importer
...
In the import configurations it’s now possible for the LDAP (Active Directory and OpenLDAP) and SQL (MySQL and Oracle) data providers to get the credentials from a target system. This allows it to omit the username and password from the import configuration so it doesn’t get serialized which in turn makes it safer to store it in the database or to transfer/share it.
Usage
The old way with credentials which is still possible:Code Block language c# var connectionParams = new MsSqlConnectionParameters("10.10.11.80", "DEVMasterData", "dev_import", "n&Wt({f9C4x3", false);
The new way without credentials:Code Block language c# var connectionParams = new TargetSystemMsSqlConnectionParameters("10.10.11.80", "DEVMasterData", false, targetSystemId: 2, userNameAttributeId: 108, passwordAttributeId: 109);
Instead of providing the username and password, the new class
TargetSystemMsSqlConnectionParameters
takes parameters for the id of the target system and 2 ids for the username attribute and the password attribute of the target system.
Info |
---|
This is not a breaking change for running system as all the old deployed import configurations still work with this change |
Note |
---|
Be aware: Every parameter in the |
CoreOne Workflow Services
...
CoreOne Workflow Administration Service
-
CoreOne Web Services
There is a new attribute tab on the Core Identity which allows you to override imported values.
Legacy Workflows
...