Remote Desktop Manager - AddOn development forum
9/29/2010 12:06:04 AM
 Sjoerd van den Berg Posts: 150
|
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 (twitter.com/chanlerone)
|
|
0
• permalink
|
9/29/2010 4:30:16 AM
 David Hervieux Administrator Posts: 4248
|
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 Devolutions inc.

|
|
0
• permalink
|
3/29/2012 5:06:50 AM
 chris Posts: 5
|
Hi, I have the same request. Is it possible Now ? Cheers
|
|
0
• permalink
|
3/29/2012 7:43:40 AM
 David Hervieux Administrator Posts: 4248
|
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 Devolutions inc.

|
|
0
• permalink
|
3/29/2012 8:37:06 AM
 chris Posts: 5
|
Thanks ... Work fine
|
|
0
• permalink
|