2022.2

Table Of Contents
Data Repository Manager
At design-time, the Data Repository Manager may be used to insert or remove Groups, Keys and
KeySets; see "Data Repository Manager" on page710.
Where to find the Data Repository
In case the Repository contains valuable information that must not be lost in case of a hardware failure,
create a backup of the repository.
By default, the Data Repository is located in the following folder:
%ProgramData%\Objectif Lune\PlanetPress Workflow 8\PlanetPress Watch\Repository.
It is also possible to create a Repository at a custom location; see "ConnectionString" below.
ConnectionString
Creates/opens a Repository to read from and write to at a custom location.
Set ConnectionString to a string containing a full path and file name.
When ConnectionString is not set, or is set to an empty string, the default Repository is used (see
"Where to find the Data Repository" above).
Reading ConnectionString returns the path of the current Data Repository file.
Note that an instance of the Repository is not kept between scripts and tasks.
Examples
JavaScript
var repoObject = new ActiveXObject("RepositoryLib.WorkflowRepository");
repoObject.ConnectionString = "C:\\User-
s\\Administrator\\Desktop\\repoObject.Repository";
(In JavaScript, backslashes have to be escaped.)
VB Script
set repoObject = CreateObject("RepositoryLib.WorkflowRepository")
repoObject.ConnectionString = "C:\User-
s\Administrator\Desktop\repoObject.Repository"
Debugging and error handling
This chapter touches on two subjects that are intrinsically linked, though their use is different.
Debugging is the act of running through your process, either step by step or as a whole, directly from
the PlanetPress Workflow Configuration tool, in order to detect and resolve issues with your process.
Page 82