Hi,
thank you for your advices, they wer helpful. We used your examples at developer guide and Hello World.
Now we have encountered with the problem when trying to create session. Our code could not establish connection, execution was stucked at the Connect() method without any information at the log.
We are using Skylight.Sdk 2.0.21. The code example is below.
Could you check what could be a reason? We are working in the domain dev-oganesson52.
private async Task<string> CreateSession(int assignmentID)
{
string skyLightDomain = AppSettings.Get<string>("SkyLightDomain");
string skyLightUserName = AppSettings.Get<string>("SkyLightUserName");
string skyLightPassword = AppSettings.Get<string>("SkyLightPassword");
string skyLightApplicationId = AppSettings.Get<string>("SkyLightApplicationId");
Manager skyManager;
skyManager = new Manager();
skyManager.SetCredentials(skyLightUserName, skyLightPassword, skyLightDomain, "https://api.skylight.upskill.io", "ssl://mqtt.skylight.upskill.io");
skyManager.SetVerbosity(Logger.Verbosity.Verbose);
await skyManager.Connect();
var sessionProperties = new Dictionary<string, string>();
sessionProperties["AssignmentID"] = assignmentID.ToString();
var session = await skyManager.CreateSession(skyLightApplicationId, "BA"+assignmentID.ToString(), "", sessionProperties);
return session.SessionId;
}