Persistence

Levels of configuration

Storage for the persistence hierarchy can be configured at multiple levels:

  • Globally

  • For each application

    • The application is referred to with an app name.

  • For each form definition within an application

    • The form definition is referred to with a form name.

  • For each resource type (form definition vs. form data)

    • The resource type is referred to with an identifier:

      • form: form definition as XHTML, with optional associated resources (images, PDF template, and other attachments)

      • data: form data as XML, with optional associated attachments

This allows you for example to store certain form definition on disk, while storing the associated data, as filled-out by users, in one or more databases.

Persistence layer configuration

Orbeon Forms 4.0 introduces a level of indirection in the persistence layer configuration: you map the parameters app, form, and form definition or data to a provider, and then map that provider to its REST persistence API. This is configured via properties starting with oxf.fr.persistence.provider.

By default, SQLite (SINCE Orbeon Forms 2023.1, previously eXist) is configured for all apps and forms, including form definitions and form data. This is done by associating the sqlite provider:

<property
    as="xs:string"
    name="oxf.fr.persistence.provider.*.*.*"
    value="sqlite"/>

In each such provider mapping, there are 3 configurable pieces of information. They represent, in this order:

  1. A string to specify the Form Runner application name, like orbeon or acme.

  2. A Form Runner form name, like registration or address.

  3. Whether the configuration regards form data (data), or the form configuration files (form).

Each of those can be a wildcard (*). Wildcards allow you to setup Orbeon Forms to use different persistence providers for different app, form, and resource type combinations.

The properties are interpreted hierarchically and you may specify the configuration more or less specifically:

Property
Explanation

oxf.fr.persistence.provider.*.*.*

form definitions and form data for all applications

oxf.fr.persistence.provider.*.*.data

form data for all applications

oxf.fr.persistence.provider.*.*.form

form definitions for all applications

oxf.fr.persistence.provider.orbeon.*.form

form definitions for all forms in application "orbeon"

oxf.fr.persistence.provider.orbeon.*.data

form data for all forms in application "orbeon"

oxf.fr.persistence.provider.orbeon.contact.*

form definitions and data for "orbeon/contact"

oxf.fr.persistence.provider.orbeon.contact.form

form definitions for "orbeon/contact"

oxf.fr.persistence.provider.orbeon.contact.data

form data for "orbeon/contact"

NOTE: This means that you can't name a persistence provider provider.

For example some built-in demo forms as well as Form Builder load their form definitions directly from the Orbeon Forms web application. This is done by using more specific properties (without wildcards):

<property
    as="xs:string"
    name="oxf.fr.persistence.provider.orbeon.builder.form"
    value="resource"/>
<property
    as="xs:string"
    name="oxf.fr.persistence.provider.orbeon.dmv-14.form"
    value="resource"/>

One thing you might notice is that, as far as configuring persistence, you treat Form Builder itself just like another form, with app name orbeon and form name builder.

If you want to change the default provider to Oracle, and since a provider named oracle is predefined, the following configuration will do just that:

<property
    as="xs:string"
    name="oxf.fr.persistence.provider.*.*.*"
    value="oracle"/>

Because wildcards are used, this property does not override the configuration for the built-in demo forms as well as Form Builder! This is desirable, because the Form Builder implementation itself is not usually something you want to store somewhere else.

In the case of Oracle, the wildcards also allow you to setup Orbeon Forms to use different schemas for different app, form, and resource type combinations. For instance you could store everything related to an hr app in one Oracle database schema and everything related to another finance app in another Oracle database schema. For more on this, see how to setup the persistence layer for multiple schemas.

Each provider supports standard properties, as follows:

Property
Explanation

The location, via HTTP, of the provider implementation.

Whether the provider is active

Whether user/group permissions are supported

Whether versioning is supported

The data format version used in the database

Whether non-ASCII characters should be escaped

uri property

The uri property specifies the location, via HTTP, of the provider implementation.

<property
    as="xs:anyURI"
    name="oxf.fr.persistence.[provider].uri"
    value="[URI to reach the provider]"/>

active property

[SINCE Orbeon Forms 4.4]

The active property specifies whether the provider is active.

This is used as follows (confirmed for Orbeon Forms 4.4 to 4.10):

  • If active, the Form Runner Home Page queries the persistence implementation to obtain the list of published forms and enable administrative operations.

  • See issue #2327.

<property
    as="xs:boolean"
    name="oxf.fr.persistence.[provider].active"
    value="[true|false]"/>

autosave property

[SINCE Orbeon Forms 4.4]

The autosave property specifies whether autosave is supported.

This is used as follows (confirmed for Orbeon Forms 4.4 to 4.10):

  • If true, Form Runner enables autosave if the other conditions are met. Otherwise, Form Runner will not attempt to enable autosave.

<property
    as="xs:boolean"
    name="oxf.fr.persistence.[provider].autosave"
    value="[true|false]"/>

permissions property

[SINCE Orbeon Forms 4.4]

The permissions property specifies whether user/group permissions are supported.

If true, Form Runner assumes that permissions are supported by the provider implementation.

This is used as follows (confirmed for Orbeon Forms 4.4 to 4.10):

  • The Summary Page sends a 403 if the user doesn't have access based on role, and the persistence provider is known not to support permissions.

<property
    as="xs:boolean"
    name="oxf.fr.persistence.[provider].permissions"
    value="[true|false]"/>

versioning property

[SINCE Orbeon Forms 4.5]

The versioning property specifies whether versioning is supported.

If true, Form Runner assumes that versioning is supported by the provider implementation.

This is used as follows (confirmed for Orbeon Forms 4.5 to 4.10):

  • At form publishing time, Form Builder proposes the option to overwrite the existing published form definition, or to create a new version.

<property
    as="xs:boolean"
    name="oxf.fr.persistence.[provider].versioning"
    value="[true|false]"/>

See also Limitations.

data-format-version property

[SINCE Orbeon Forms 2017.1]

The data-format-version property specifies which data format version is in the database.

Allowed values:

  • 4.0.0

  • 4.8.0

  • 2019.1.0 [SINCE Orbeon Forms 2019.1]

The values must match exactly.

The default is 4.0.0 for backward compatibility.

This property must be changed very carefully. All form data in the database for a given provider must be in the same format and it is not possible, at this point, to change the value of this property if there is existing data in the database.

<property
    as="xs:string"
    name="oxf.fr.persistence.*.data-format-version"
    value="4.8.0"/>

NOTE: Since Orbeon Forms 2017.1, the oxf.fr.detail.new.service.enable property always assumes data in 4.0.0 format even if the property above is set to a different value.

escape-non-ascii-characters property

[SINCE Orbeon Forms 2021.1]

We recommend you set up your database to store text as Unicode, to avoid potential problems when users enter non-ASCII characters, like accents, characters from non-latin languages, or even emojis. In cases when this isn't possible, you can set the following property to true, to instruct Orbeon Forms to escape all non-ASCII characters in form data before they are sent to the database.

This escaping only applies to form data, and not to indices created based on this data, which means that if you are using the Form Runner summary page, or the search API, and that a field value shown in the summary page or returned by the search API contains a character that your database is unable to store, while your data is still safe, the summary page or the result of the search API might contain an incorrect value.

For instance, say a user enters the character é in a field, and that you have this property enabled, then the form data will contain &#233;, which is the escaped version of é, however, if that field is indexed (because you've enabled Show on Summary page or Allow bulk edit in the Control Settings for that field), then the character é will be stored in the index table, which might be a problem if your database encoding cannot accommodate the storage of this character.

Amongst the built-in implementations of the persistence API, this property is supported for all relational databases, but not for eXist.

<property
    as="xs:boolean"
    name="oxf.fr.persistence.*.escape-non-ascii-characters"
    value="false"/>

Multiple databases of the same type

Say you have two MySQL databases (or a single MySQL database with different schemas and users configured) and you would like to configure Orbeon Forms to store form definitions and form data to one or the other of the databases. Assume the following JDBC datasources:

  • mysql_foo

  • mysql_bar

You associate each datasource with a Form Runner persistence provider with the following properties:

<property as="xs:anyURI"  name="oxf.fr.persistence.mysql_foo.uri"         value="/fr/service/mysql"/>
<property as="xs:string"  name="oxf.fr.persistence.mysql_foo.datasource"  value="mysql_foo"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_foo.autosave"    value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_foo.permissions" value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_foo.versioning"  value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_foo.lease"       value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_foo.reindex"     value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_foo.reencrypt"   value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_foo.sort"        value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_foo.active"      value="true"/>

<property as="xs:anyURI"  name="oxf.fr.persistence.mysql_bar.uri"         value="/fr/service/mysql"/>
<property as="xs:string"  name="oxf.fr.persistence.mysql_bar.datasource"  value="mysql_bar"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_bar.autosave"    value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_bar.permissions" value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_bar.versioning"  value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_bar.lease"       value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_bar.reindex"     value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_bar.reencrypt"   value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_bar.sort"        value="true"/>
<property as="xs:boolean" name="oxf.fr.persistence.mysql_bar.active"      value="true"/>

Then if you would like:

  • form definitions and form data for the Form Runner app foo to go to mysql_foo

  • form definitions and form data for the Form Runner app bar to go to mysql_bar

Add:

<property as="xs:string"  name="oxf.fr.persistence.provider.foo.*.*"      value="mysql_foo"/>
<property as="xs:string"  name="oxf.fr.persistence.provider.bar.*.*"      value="mysql_bar"/>

Configuration properties for specific persistence providers

Each provider may have specific configuration properties. For the latest settings, seeproperties-form-runner.xml.

Storing attachments in the filesystem or on S3

By default, attachments are stored in the database. Alternatively, you can configure Form Runner to store attachments in the filesystem ([SINCE Orbeon Forms 2023.1]) or S3 ([SINCE Orbeon Forms 2025.1]). This is useful for larger attachments, for example.

To store attachments in the filesystem, you can do so globally by setting the following property:

<property 
    as="xs:string"
    name="oxf.fr.persistence.provider.*.*.*.attachments"
    value="filesystem"/>

To store attachments in S3, use the s3 value:

<property 
    as="xs:string"
    name="oxf.fr.persistence.provider.*.*.*.attachments"
    value="s3"/>

Filesystem

For filesystem storage, the base path where attachments are stored is configured with:

<property
    as="xs:string"
    name="oxf.fr.persistence.filesystem.directory"
    value="/path/to/attachments"/>

This property doesn't have any default value and is mandatory.

The full path where the attachment file is stored is determined using an internal scheme, which includes the application and form names, among other information. For example, with the above property value, an attachment would be stored at the following location:

/path/to/attachments/acme/sales/data/194714ff845faf31d08f745ca62cb0c622788aae/1/928cf991678ea0449bf0988dce956b4a88eb34c8.bin

S3

[SINCE Orbeon Forms 2025.1] To store attachments in S3, it is mandatory to specify an S3 configuration, using the following property:

<property
    as="xs:string"
    name="oxf.fr.persistence.s3.s3-config"
    value="s3-config-name"/>

See S3 storage for more information about the properties needed to configure an S3 storage.

For S3, the base path is configured using the following property:

<property
    as="xs:string"
    name="oxf.fr.persistence.s3.base-path"
    value="path/to/attachments"/>

By default, this property is set to an empty string, which means that attachments are stored at the root of the configured S3 bucket. As with filesystem storage, the full path to the attachment objects includes the application and form names, as well as other information.

For example, for an S3 bucket named s3-bucket and a base path set to path/to/attachments, an attachment would be stored at the following S3 location:

s3-bucket/path/to/attachments/acme/sales/data/194714ff845faf31d08f745ca62cb0c622788aae/1/928cf991678ea0449bf0988dce956b4a88eb34c8.bin

For an empty base path, it would be stored at the following location:

s3-bucket/acme/sales/data/194714ff845faf31d08f745ca62cb0c622788aae/1/928cf991678ea0449bf0988dce956b4a88eb34c8.bin

Multiple attachment providers of the same type

Multiple filesystem and S3 attachment providers can be configured, following the same principles as described above

For example, if you need to store attachments in two different filesystem paths for the Form Runner apps foo and bar, you can do so by using the following properties:

<property 
    as="xs:string"
    name="oxf.fr.persistence.provider.foo.*.*.attachments"
    value="filesystem_foo"/>
<property
    as="xs:string"
    name="oxf.fr.persistence.provider.bar.*.*.attachments"
    value="filesystem_bar"/>

<property as="xs:anyURI" name="oxf.fr.persistence.filesystem_foo.uri"       value="/fr/service/filesystem"/>
<property as="xs:string" name="oxf.fr.persistence.filesystem_foo.directory" value="/path/to/foo_attachments"/>

<property as="xs:anyURI" name="oxf.fr.persistence.filesystem_bar.uri"       value="/fr/service/filesystem"/>
<property as="xs:string" name="oxf.fr.persistence.filesystem_bar.directory" value="/path/to/bar_attachments"/>

Similarly, you can configure multiple S3 attachment providers.

Dynamic base path configuration

In addition to static paths, you can also use an AVT to dynamically configure the base path. For instance, the following would use a base path specified by an environment variable:

<property
    as="xs:string"
    name="oxf.fr.persistence.filesystem.directory"
    value="{environment-variable('ATTACHMENTS_BASE_DIRECTORY')}"/>

Note that, specifically in the context of the oxf.fr.persistence.*.directory property, it is not necessary to set oxf.xpath.environment-variable.enabled to true in order to use the environment-variable() function.

For S3, the oxf.fr.persistence.s3.base-path property is also interpreted as an AVT.

Filename of stored attachments

Default filename

By default, attachments are stored using a filename format of [attachment-id].bin, where [attachment-id] represents a unique hexadecimal identifier for each attachment. The original filename and file extension are not retained. Example:

883a36f20b8054187e0994022269a321ba3ec07e.bin

Custom filename

[SINCE Orbeon Forms 2025.1]

The default behavior typically works well, particularly when attachments are stored in the database. However, when attachments are stored on the local filesystem or S3, you may want to preserve all or part of the original filename, including the file extension. You can achieve this using the following property:

<property
    as="xs:string"
    name="oxf.fr.persistence.attachments.filename.*.*"
    value="concat(fr:attachment-id(), '.bin')"/>

The following XPath functions can be used to extract information from the attachment:

  • fr:attachment-id(): attachment unique ID (must be included)

  • fr:attachment-filename(): original attachment filename (e.g. portrait.jpg)

  • fr:attachment-mediatype(): attachment file type (e.g. application/pdf, image/jpeg, etc.)

  • fr:attachment-size(): attachment size in bytes

  • fr:attachment-control-name(): name of the attachment control

Note about the fr:attachment-id() function:

  • This function must be called at least once in the XPath expression specified in the oxf.fr.persistence.attachments.filename property. If the function's complete output is not found during expression evaluation, an error will occur and the attachment will not be saved.

  • Currently, this function can only be invoked within the context of the oxf.fr.persistence.attachments.filename property, while other attachment functions can be called from additional locations.

Example:

<property
    as="xs:string"
    name="oxf.fr.persistence.attachments.filename.*.*"
    value="concat(
        format-date(current-date(), '[Y]-[M01]-[D01]'),
        '-',
        fr:attachment-id(),
        '-',
        fr:attachment-filename()
    )"/>

This would lead to filenames that look like this:

2025-06-11-883a36f20b8054187e0994022269a321ba3ec07e-portrait.jpg

See also

Last updated