Config Data Service

The ConfigDataService handles the storage of persistent configuration options such as the metatype definitions. These are stored in the form of XML files that contain the attributes of the archive objects (e.g. Folder or Document) together with their properties.

These so-called supplementaries are created after the first access to the respective repository. The place where these XML files are stored must be defined via the Config Data Service. There are two possible options:

  1. filesystem (default)

  2. storage

 

The configuration of this service is mandatory for the kgs tia Content Server - core regardless of the interface used (ArchiveLink, CMIS, ILM).

 

<?xml version='1.0' encoding='UTF-8'?> <type xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="DocumentTypeDefinition"> <id>addocument</id> <displayname>Document</displayname> <queryname>addocument</queryname> <description>autodigit base document type</description> <baseid>addocument</baseid> <creatable>true</creatable> <queryable>true</queryable> <deletable>false</deletable> <metafield> <id>name</id> <displayname>Name</displayname> <queryname>name</queryname> <description>the name of the document</description> <updatability>readonly</updatability> <inherited>false</inherited> <required>true</required> <queryable>true</queryable> <orderable>true</orderable> <autofillable>true</autofillable> <propertytype>string</propertytype> <defaultvalue/> </metafield> ...

Extract from the metatype definition for the archive object Document (supplementary ad_document.xml)