-
Notifications
You must be signed in to change notification settings - Fork 1
Enabling Authentication After Migration from OCDT WSP
Alex Vorobiev edited this page Feb 8, 2021
·
1 revision
When migrating from a OCDT WSP server with the use of a migration.json
file to carry over the credentials of Persons, one has to perform some final actions to fully enable the authentication.
- Copy the Server Salt from the settings file of the WSP server installation.
- On the CDP4 WebServices installation server navigate to
/Authentication/CDP4WspDatabase/config.json
file in the midtier. - Paste the salt (in quotes) to the
"ServerSalts": []
array. For example:
{
"AuthenticatorConnectorProperties": [
{
"Rank": 1,
"IsEnabled": true,
"Name": "Basic WSP Authentication",
"Description": "Provides WSP basic password authentication(WSP hashing algorithm) against the Person retrieved from the database.",
"ServerSalts": ["lslJ2k3bBjukSHOklo28jhUjb7280bsvcjsi"]
}
]
}
- Save the file.
- Restart the CDP4 WebServices.
You should now be able to use the credentials that have been migrated from the OCDT WSP server.