This library provides implementations for the majority, but not all, of the SCORM Cloud API. It is provided under the BSD 3-clause License (see LICENSE).
You can sign up for a SCORM Cloud account at https://cloud.scorm.com.
See our API quick start guide for more information.
Requires .NET 2.0+
This library is available via NuGet.
From the command line:
nuget install RusticiSoftware.HostedEngine.Client
From Package Manager:
Install-Package RusticiSoftware.HostedEngine.Client -Version 1.5.0
From .NET CLI:
dotnet add package RusticiSoftware.HostedEngine.Client --version 1.5.0
If you're only using a single application (app ID), you can use the
ScormCloud
convenience singleton class:
ScormCloud.Configuration =
new RusticiSoftware.HostedEngine.Client.Configuration(
"https://cloud.scorm.com/EngineWebServices",
"your app id",
"your secret key",
"your origin string");
where your app id is the app ID in question, your secret key is a secret key for that app ID, and your origin string is a company/app description. (The origin string is used for debugging on the SCORM Cloud developers' side.) See API quick start for information on app ID / secret keys.
If you're using multiple applications in SCORM Cloud, you'll need to
build the ScormEngineService
class manually.
Configuration cfg =
new RusticiSoftware.HostedEngine.Client.Configuration(
"https://cloud.scorm.com/EngineWebServices",
"your app id",
"your secret key",
"your origin string");
ScormEngineService service = new ScormEngineService(cfg);
This readme assumes the single app ID case, but the interface of
ScormCloud
and ScormEngineService
are effectively the same. For example,
instead of ScormCloud.CourseService
, you'd use service.CourseService
.
Once installed and configured, it's time to make API calls. As explained in the quick start guide, the library implements the scaffolding used to interact with the actual web API.
We also have a .NET demo app built using this client library, which contains far more example code, but may not necessarily be following best practices.
Corresponds to rustici.registration.exists.
bool exists = ScormCloud.RegistrationService.RegistrationExists("reg id");
Corresponds to rustici.registration.createRegistration.
ScormCloud.RegistrationService.CreateRegistration(
"registration id",
"course id",
"learner id",
"learner first name",
"learner last name");
As explained in the LMS Integration Guide, the registration, course, and learner IDs are provided by your system. The course ID needs to be an ID for a course that's already been imported. See the LMS integration guide for more information about integrating a typical LMS with SCORM Cloud.
As explained in rustici.registration.launch, the launch API call is different from nearly every other API call in that it's intended for integrating systems to redirect learners to that API call URL instead of calling it server-side.
The client library facilitates this by providing a GetLaunchUrl
method:
string launchUrl = ScormCloud.RegistrationService.GetLaunchUrl(
"registration id",
"redirect on exit url");
where registration id is the registration to launch and redirect on exit url is the URL to which the learner should be redirected if they exit the course. (Note: as discussed in the LMS Integration Guide, don't rely on learners hitting the redirect on exit URL.)
In a typical .NET web-app, you might redirect to this:
Response.Redirect(launchUrl);
The library provides other overrides for GetLaunchUrl that have more parameters.
Although this library implements most of the SCORM Cloud API, it doesn't
implement all of it. In cases where the library is insufficient, you can use
the ServiceRequest
class to directly call API methods described in the
API reference:
ServiceRequest request = ScormCloud.CreateNewRequest();
request.Parameters.Add("regid", "your reg id");
XmlDocument response = request.CallService("rustici.registration.exists");
XmlElement attrEl = (XmlElement) response.GetElementsByTagName("result")[0];
bool exists = Convert.ToBoolean(attrEl.InnerXml.ToString());
This snippet of code manually builds a ServiceRequest
with one parameter
and then uses CallService
to invoke the request for a particular API method.
As it happens, this is (close to) the implementation of the RegistrationExists method above.
If you find methods missing and would like to implement them, we would be eternally grateful for any pull requests.
Need to get in touch with us? Contact us at support@scorm.com. Ask us anything.
Don't hesitate to submit technical questions. Our support staff are excellent, and even if they can't answer a question or resolve a problem, tickets get escalated quickly to real, live developers.