CyberArk の .NET SDK に関する適切なドキュメントが見つかりません。
以下のコードを使用して、CyberArk パスワード管理システムを統合して Outlook アカウントのパスワードを取得しようとしています
PSDKPasswordRequest passReq = new PSDKPasswordRequest();
PSDKPassword password = null;
// What is the purpose of CredFile??
passReq.CredFilePath = "F:\\CredFiles\\AppUser.cred";
passReq.Safe = "SAFE_NAME";
passReq.Folder = "root";
passReq.Object = userName;
passReq.Reason = "Get some stuff done.";
// Sending the request to get the password
password = CyberArk.AIM.NetPasswordSDK.PasswordSDK.GetPassword(passReq);
ただし、接続できず、次のエラーが表示されます
"PDKTC006E Failed to connect to provider (Reason=[connect command failed])"\