Use credential repos with custom addon

Use credential repos with custom addon

avatar

Hi,



I build a new AddOn for Proxy Networks' Proxy Host sessions. Just curious if it is possible to use the saved credentials from the repository using the SDK?




Cheers!

Sjoerd

Cheers!

Sjoerd

All Comments (4)

avatar

Hi,
It's not possible yet, but we will eventually add this functionality in the SDK. you will have to implements a new interface ISessionAddOn3

David Hervieux

avatar

Hi,
I have the same request. Is it possible Now ?
Cheers

avatar

Hi,
It's already there. Take a look at ISessionAddOn3


/// <summary>
/// This method is used to set the domain in the parameters
/// </summary>
/// <param name="parameters"></param>
/// <param name="domain"></param>
string SetDomain(string parameters, string domain);

/// <summary>
/// This method is used to set the password in the parameters
/// </summary>
/// <param name="parameters"></param>
/// <param name="password"></param>
string SetPassword(string parameters, string password);

/// <summary>
/// This method is used to set the username in the parameters
/// </summary>
/// <param name="parameters"></param>
/// <param name="userName"></param>
string SetUserName(string parameters, string userName);

David Hervieux

avatar

Thanks ...
Work fine ;)