30-05-22 08:28 PM
Hi!
You can share details of how your robots' credentials are managed?
Do you use any interface or change manually in Blue Prism?
Answered! Go to Answer.
31-05-22 01:09 PM
BPACredentials
which will give you Username and Password but the password is stored in an encrypted format so you may not be able to decipher it without the encryption key which Blue Prism uses internally while using get credential action. But, if you store the password as some other parameter value then you could access the value from BPACredentialsProperties
Now for making it accessible, you would require to create a front end app and connect it to the backend database it via an API to get the results. But I don't recommend this approach as it can cause performance issue for your database and put a lot of load as well.30-05-22 11:56 PM
<RESOURCE_MACHINE_NAME>:<APPLICATION_NAME>
DESKTOP-C391FA9:Workday
GetResourceName()
whenever is executed by any bot it will set the machine name of that bot itself and hence the credential name formed as a result of this would ideally map to the credential stored for that bot only. This is how multiple service accounts for each individual bot can be stored while accessing any application credential.31-05-22 06:49 AM
31-05-22 12:12 PM
Hi, @devneetmohanty07 thank you very much for your excellent explanation
I was wondering if there is a more direct way for the key user to change their passwords in an easier way.
Let me give you some context...
We have a lot to manage. Every time once a meeting has expired we must contact the key user of the robot (from the commercial area) and schedule a meeting to change a password. By "direct way" I mean "the key user himself can change his credentials without opening the Blue Prism interface". Is there any interface, web application or something else that can provide this for us?
31-05-22 01:09 PM
BPACredentials
which will give you Username and Password but the password is stored in an encrypted format so you may not be able to decipher it without the encryption key which Blue Prism uses internally while using get credential action. But, if you store the password as some other parameter value then you could access the value from BPACredentialsProperties
Now for making it accessible, you would require to create a front end app and connect it to the backend database it via an API to get the results. But I don't recommend this approach as it can cause performance issue for your database and put a lot of load as well.31-05-22 02:42 PM