We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ello, I've been trying to figure out a way to re-init the Scorm Configuration when handling multiple App Ids and Secret Key Combinations.
I've tried doing this:
ScormCloud.Configuration = new Configuration(ScormServiceUrl, AppliationId, SecretKey, Origin);
in a call like this:
public static void UpdateScormConfig(string origin = "", string appId = "", string secretKey = "") { origin = string.IsNullOrWhiteSpace(origin) ? Origin : origin; appId = string.IsNullOrWhiteSpace(appId) ? AppliationId : appId; secretKey = string.IsNullOrWhiteSpace(secretKey) ? SecretKey : secretKey; SetKeys(appId, secretKey); ScormCloud.Configuration = new Configuration(ScormServiceUrl, appId, secretKey, origin); IsInitialized = true; }
but the existing configuration persists when I access
ScormCloud.CourseService.GetCourseList();
as its ref'd config has already been set. in the various services such as 'CourseService' and cant be touched directly.
Is there a way around this currently that I'm not seeing?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ello,
I've been trying to figure out a way to re-init the Scorm Configuration when handling multiple App Ids and Secret Key Combinations.
I've tried doing this:
in a call like this:
but the existing configuration persists when I access
as its ref'd config has already been set. in the various services such as 'CourseService'
and cant be touched directly.
Is there a way around this currently that I'm not seeing?
The text was updated successfully, but these errors were encountered: