Skip to content

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.

  1. Copy the Server Salt from the settings file of the WSP server installation.
  2. On the CDP4 WebServices installation server navigate to /Authentication/CDP4WspDatabase/config.json file in the midtier.
  3. 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"]
    }
  ]
}
  1. Save the file.
  2. Restart the CDP4 WebServices.

You should now be able to use the credentials that have been migrated from the OCDT WSP server.

Clone this wiki locally