DC 5.6 Application configuration
- Rasmus Hjelmberg Duemose Hansen
- Gosia Creosteanu (Unlicensed)
- Niels Erik Knudsen (Unlicensed)
Owned by Rasmus Hjelmberg Duemose Hansen
There are 3 levels of configuration for the Importer. This section describes the application level configuration which is in effect for all hotfolder configurations. This configuration is done in the app.config which is named Importer.exe.config when running app mode and ImportService.exe.config when running service mode.
{ "DAMCenterDetails": { "BaseUrl": "https://dam.company.com", "SystemUsername": "ImportUser", "SystemPassword": "fc5e038d38a57032085441e7fe7010b0" }, "Service": { "PollRate": 10, "RequestTimeout": 60, "RequestDelay": 2, "RequestRetry": 3, "Name": "ImportService" }, "Logging": { "LogLevel": "Information", "Overrides": { "Microsoft.EntityFrameworkCore": "Warning" }, "LogDirectory": "Logs", "DaysToKeepLogFiles": 30 }, "Jaeger": { "Enable": false, "AgentHost": "localhost", "AgentPort": 6831 } }
Key | Description |
---|---|
BaseUrl | The URL for the DC |
UserName | The username of the user with rights to upload and edit assets. It is a good idea allthough not required to create a separate user for this instead of reusing Super Administrator or System. |
Password | An MD5 hash of the password corresponding to UserName. |
PollRate | When the Importer is running as a service this is the interval in seconds between checking if files are present in the hotfolder. |
RequestTimeout | Timeout of web request in seconds. Acceptable values range from 1 to 3600. Default is 60. Added in 5.2.2 (backported to 5.1.x). |
RequestDelay | Delay in seconds between retries of failed web requests. Acceptable values range from 1 to 60. Default is 2. Added in 5.2.2 (backported to 5.1.x). |
RequestRetry | How many times is a failing web request retried. Acceptable values range from 1 to 10. Default is 3. Added in 5.2.2 (backported to 5.1.x). |
A note on passwords
It has been common practice to copy-paste passwords directly from DB but that will not work with the new strong encryption type passwords. Here is the proper way to do it:
- Create a new user for the Importer purpose or reuse an existing one.
- Either way make a note of the the actual password.
- Type in that password in any MD5 tool and generate a hash.
- Use the MD5 hash for the Importers application config.
Examples of MD5 tools:
SQL:
How to generate an MD5 hash in SQLSELECT CONVERT(NVARCHAR(255), HashBytes('MD5', 'password'), 2)
- Notepad++