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:
In each such provider mapping, there are 3 configurable pieces of information. They represent, in this order:
A string to specify the Form Runner application name, like
orbeon
oracme
.A Form Runner form name, like
registration
oraddress
.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 |
---|---|
| form definitions and form data for all applications |
| form data for all applications |
| form definitions for all applications |
| form definitions for all forms in application "orbeon" |
| form data for all forms in application "orbeon" |
| form definitions and data for "orbeon/contact" |
| form definitions for "orbeon/contact" |
| 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):
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:
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 autosave is supported. | |
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
uri
propertyThe uri
property specifies the location, via HTTP, of the provider implementation.
active
property
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.
autosave
property
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.
permissions
property
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.
versioning
property
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.
See also Limitations.
data-format-version
property
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.
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
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 é
, 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.
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:
Then if you would like:
form definitions and form data for the Form Runner app
foo
to go tomysql_foo
form definitions and form data for the Form Runner app
bar
to go tomysql_bar
Add:
Configuration properties for specific persistence providers
Each provider may have specific configuration properties. For the latest settings, see properties-form-runner.xml
.
Attachments
By default, attachments are stored in the database. You can configure Form Runner to store attachments in the file system instead. This is useful for larger attachments, for example. You can do so globally by setting the following property:
The base directory where attachments are stored is configured with:
Multiple attachment directories
Multiple attachment directories can be configured, following the same principles as described above
For example, if you need two different base directories for the Form Runner apps foo
and bar
, you can do so by using the following properties:
Dynamic base directory configuration
In addition to static paths, you can also use an AVT to dynamically configure the base directory. For instance, the following would use a base directory specified by an environment variable:
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.
See also
Last updated