Modify the SetCredentials method
Call the client credential provider SetCredentials method when the ASO Manager or the Credential Store requests a credential update. Add the logic into this method to update the credentials in your external source.
The SetCredentials method includes the following
parameters:Parameter Description applicationKey A string that contains the name of the credential that you
requested. customData A dictionary that contains name/value pairs. This dictionary contains
all the values on the credential entry and all the replaceable system
parameters, for example: domain A string that contains the new domain value. userName A string that contains the new user name value. password A string that contains the new password value.
Add the required code to the method to query and update the external source. The code you
add replaces the code highlighted in yellow in the following example:
The SetCredentials method returns true or false for the result. If the result is true, the credential update succeeded. If the result is false, the credential request failed.
Previous topic Modify the GetCredentials method Next topic Prepare for deployment