Digabi 2 Application Specification
The next generation Abitti 2 to be used in Matriculation Examination tests from autumn 2026 onwards is based on an installable kiosk-mode browser application, and HTML5 based third-party applications storing files to a test-time cloud storage. The third-party applications, such as calculators or office suite, runs in their own Docker containers.
Contact us before you start working on your third-party application!
The apps will be run in an iframe in the Digabi 2 exam system, and they will be able to access the test's files via WebDAV. The apps should not use any technology that interferes with the iframe, for example referring to window.top.
Want to read the code instead of spec? Take a look at the example implementation with Draw.io.
note: At the moment this documentation may change since we're taking the baby steps with the architecture.
GET /
This is the main entry point to the app called by the Digabi 2 exam system when the application is started. The app server MAY serve additional assets only under this path.
If the app supports files, it will be launched with the filename query parameter. A client-side script MUST first check the file's existence with a WebDAV PROPFIND request, and load the app with its contents if it exists. Otherwise the app SHOULD present a new, blank file to the user.
The app MUST use the path /wd/{filename} to access the file.
const url = `/wd/${encodeURIComponent(filename)}`
const result = await fetch(url, { method: "PROPFIND" })
switch (result.status) {
case 207: {
// The file exists; open the app with its contents.
return startApp(await fetch(url).then(response => response.blob()))
}
case 404: {
// No such file; it will be created when first saved.
return startApp(new File())
}
default: {
// An error happened; do not start the app.
return
}
}
The app MAY automatically save the file, or when prompted by the user, via a PUT request with the new contents to the same URL.
const url = `/wd/${encodeURIComponent(filename)}`
await fetch(url, { method: "PUT", body: file })
Session cookies determine the exam and student whose files are being used, but the app MUST NOT make any use or assumptions of such cookies.