SEBWIN-405: Fixed issue with parsing of server instruction.
This commit is contained in:
parent
09fbc6579a
commit
43bdfbb411
1 changed files with 9 additions and 3 deletions
|
@ -315,10 +315,13 @@ namespace SafeExamBrowser.Server
|
||||||
var token = ("SEBConnectionToken", connectionToken);
|
var token = ("SEBConnectionToken", connectionToken);
|
||||||
var success = TryExecute(HttpMethod.Post, api.PingEndpoint, out var response, content, contentType, authorization, token);
|
var success = TryExecute(HttpMethod.Post, api.PingEndpoint, out var response, content, contentType, authorization, token);
|
||||||
|
|
||||||
if (success && TryParseInstruction(response.Content, out var instruction) && instruction == "SEB_QUIT")
|
if (success)
|
||||||
|
{
|
||||||
|
if (TryParseInstruction(response.Content, out var instruction) && instruction == "SEB_QUIT")
|
||||||
{
|
{
|
||||||
Task.Run(() => TerminationRequested?.Invoke());
|
Task.Run(() => TerminationRequested?.Invoke());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
logger.Error($"Failed to send ping: {ToString(response)}");
|
logger.Error($"Failed to send ping: {ToString(response)}");
|
||||||
|
@ -445,8 +448,11 @@ namespace SafeExamBrowser.Server
|
||||||
{
|
{
|
||||||
var json = JsonConvert.DeserializeObject(Extract(content)) as JObject;
|
var json = JsonConvert.DeserializeObject(Extract(content)) as JObject;
|
||||||
|
|
||||||
|
if (json != default(JObject))
|
||||||
|
{
|
||||||
instruction = json["instruction"].Value<string>();
|
instruction = json["instruction"].Value<string>();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
logger.Error("Failed to parse instruction!", e);
|
logger.Error("Failed to parse instruction!", e);
|
||||||
|
|
Loading…
Add table
Reference in a new issue