Error in TDM Portal Portal Working with Encrypted Passwords
search cancel

Error in TDM Portal Portal Working with Encrypted Passwords

book

Article ID: 142770

calendar_today

Updated On:

Products

CA Test Data Manager (Data Finder / Grid Tools)

Issue/Introduction

Using Javelin flows into the TDM Portal invoking passwords.
The passwords being used are encrypted by Javelin but while doing the Generation on the Registered Javelin, the generation fails. 
Not encrypted it works fine.

There is no error in Javelin flow. 
Invoking a process that exports data and there I have created a variable with the password connection encrypted,
directly in the Javelin the flow runs ok but when I put the password encrypted in the Portal it does not do anything.

 

Environment

CA Test Data Manager -
TDM Web Portal
Javelin

Cause

Need to make change in a Javelin configuration files.

Resolution

Make the following changes to correct this issue:

In folder C:\Program Files (x86)\Grid-Tools\Javelin, edited Javelin.exe.config and JavelinExecutor.exe.config files with the below code:

In Javelin.exe.config line 17:
    <add key="EnableGlobalDecrypt" value="False" />

set to:
    <add key="EnableGlobalDecrypt" value="True" />

In JavelinExecutor.exe.config line 13:
    <add key="EnableGlobalDecrypt" value="False" />

set to:
     <add key="EnableGlobalDecrypt" value="True" />

EnableGlobalDecrypt=True would ensure that all encrypted variables are decrypted on the fly when the Javelin flow is loaded.