I'm using PowerShell 5.1, Visual Studio 2017, C# , and XenServer SDK 7.1.1.
Using Get-Credentials and Export-CliXml in a PowerShell program, I've saved my pool master server login credentials for the root user to an XML credentials file (xml_creds.xml)
Now, I want to create and login to a session using C# (see code below). As you can see, I'm forced to convert my secure string to a plain text string to satisfy the signature for the Xen .NET API's login_with_password
method.
Using the API, how do I login to the session using a secure string?
Code
try
{
securedPassword = new SecureString();
string unsecuredPassword = "";
Runspace rs = RunspaceFactory.CreateRunspace();
rs.Open();
Pipeline pipeline = rs.CreatePipeline(@"Import-CliXml 'C:\foo\xml_creds.xml';");
Collection<PSObject> results = pipeline.Invoke();
if (results.Count == 1)
{
PSObject psOutput = results[0];
securedPassword = ((PSCredential)psOutput.BaseObject).Password;
unsecuredPassword = new System.Net.NetworkCredential(string.Empty, securedPassword).Password;
username = ((PSCredential)psOutput.BaseObject).UserName;
rs.Close();
session = new Session(hostname, port);
session.login_with_password(username, unsecuredPassword, API_Version.API_1_3);
}
else
{
throw new System.Exception("Could not obtain pool master server credentials");
}
}
catch (Exception e1)
{
System.Console.WriteLine(e1.Message);
}
finally
{
if (securedPassword != null)
{
securedPassword.Dispose();
}
if (session != null)
{
session.logout(session);
}
}
I contacted Citrix.
The Xen API does not provide a mechanism for logging into a session using a secure string password.
So, I ended up using a C# program that executes two
PowerShell
scripts that do support a secure string password.See the code below.
form1.cs (form has just a button)
XenSessionAccess class