Filesystem Connector
The Filesystem Connector saves frevvo submissions to local or remote file systems (Windows, Linux). You can:
- Save each submission to its own folder
- Save all submissions to the same folder
- Choose to keep file names or generate a file name
- Generate metadata for import into your Enterprise Content Management system.
Submission form/workflow XML document(s), attachments that are added by the user and the PDF snapshot of your form/workflow can be saved in the configured submissions directory.
Using the Filesystem Connector to save submissions to a shared directory might be an alternative if your forms/workflows contain sensitive/secure information that you would rather not send via email or if you want to import the submissions into your Enterprise Content Management system.
Submissions from frevvo are posted to the Filesystem Connector using the Doc Action ConnectForms/FlowswiththeSavetoFilesystemwizard.
The Filesystem Connector is available for cloud and in-house frevvo customers.
frevvo only supports/certifies the Filesystem Connector running in the Apache Tomcat container.
Generation of a metadata file for each submission can imported into a document management system. This is possible with the Send to File System wizard and a descriptor file that provides the instructions in freemarker language. Once the metadata file is generated, it is the customer's responsibility to import it into the document management system.
On This Page:
Installing the Filesystem Connector
Cloud Customers
The Filesystem connector can be installed behind your firewall where it can connect to your back end system in order to read/write data.
If you use the frevvo Cloud hosted server, you must ensure that the connector is accessible from the frevvo servers. This is done by opening up one of the following ports in your firewall:
HTTP Ports: 80 or 19080
HTTPs Ports: 443 or 19443
We recommend that you use https and not http. Https is a secure channel.Customers that use firewall white-listing, should make sure the frevvo cloud outgoing server IP 54.86.85.105 (host outgoing.frevvo.com) is added to the list.
If you want to install the Filesystem Connector in the frevvo In-House tomcat bundle, follow these easy steps: (You don't have to use the frevvo application from this bundle).
Review the Supported Platforms list.
Download and install the certified version of the Java Development Kit (JDK) and set the JAVA_HOME environment variable as described here.
Download the frevvo tomcat bundle
Unzip the frevvo zip file into a location of your choice: e.g. c:\frevvo. We'll refer to this directory below as <frevvo-home>.
Install the Filesystem connector inside that same tomcat.
Download the filesystem zipflile
Extract the filesystem.war to <frevvo-home>\tomcat\webapps directory.
Delete the <frevvo-home>\tomcat\frevvo directory.
Start frevvo by clicking on the startup.(bat,sh) file for your operating system in the <frevvo-home> directory. It is also possible to configure frevvo as a Windows service
In-house Customers with an existing frevvo tomcat bundle installation
The Filesystem connector can be installed in behind your firewall where it can connect to your back end system in order to read/write data. These instructions assume you have an in-house installation of frevvo up and running and you are running frevvo and the Filesystem Connector in the same tomcat.
To install the Filesystem connector in the same tomcat as frevvo:
Stop frevvo.
Download the filesystem connector zipfile
Extract filesystem.war to your <frevvo-home>\tomcat\webapps directory.
Start frevvo
Upgrading from a previous version
To upgrade a previous version of the Filesystem Connector to the latest version in your existing Tomcat bundle installation:
Ensure you have downloaded the supported version of OpenJDK. Check Supported Platforms before beginning.
Stop frevvo
Download the latest version of the Filesystem Connector
Extract the filesystem.war to your <frevvo-home>\tomcat\webapps directory.
Verify that the Filesystem Connector configuration is correct for the new version.
Proceed to Connect Forms/Workflows with the Send to File System wizard to continue.
Configuring the Filesystem Connector
The Filesystem Connector is configured using properties in the <frevvo-home>\tomcat\conf\frevvo-config.properties file.
Follow these steps to configure the Filesystem connector:
Modify the File Connector settings section of the frevvo-config.properties file.
the frevvo.filesystem.connector.url - The location of the Filesystem connector is set for the installation with this property. It defaults to http://localhost:8082/filesystem. Change the <localhost:8082> in the default URL to the <server:port> where you installed the Filesystem connector in your environment.
Uncomment the property by deleting the # that precedes it.
# File Connector settings frevvo.filesystem.connector.url=http://localhost:8082/filesystem
Add these properties to the <frevvo-home>\tomcat\conf\frevvo-config.properties file. You can add them to the existing File Connector settings section or make a new section with a comment as shown in the example below. Refer to the table for a description of the configurable properties:
Here is an example of the Filesystem Connector properties added to the File Connector settings section of the frevvo-config.properties file. When executed, frevvo submissions will be:
Saved on the local drive in a directory specified in the wizard that is located under the root directory configured here. Ex: C:\Submissions.
Individual file names will be retained.
Attachments in the submission will be saved.
Add the suffix "_desc.txt" to the metadata file for each submission.
# File Connector settings frevvo.filesystem.connector.url=http://localhost:8082/filesystem connector.file.root.dir=C:/ connector.file.name.keep=true connector.file.descriptor.suffix=_desc.txt connector.file.metadata.subdir=metadataFile/
Start the Insight server first, then start frevvo.
Make sure the directory where you plan to save the submissions is created and and has the appropriate access for the OS you are using. For example:
If you are using Windows, you can map a drive to a server directory (not recommended because Windows mapped drives cannot be reliably accessed from java), or you could use the UNC path i.e. //host-name
If you are using a Unix operating system you could mount a remote filesystem as a directory and use it as your destination directory
Browse http://<your server:port>/filesystem/health (replace <your server:port> with your frevvo server:port) to check the status of the connector. If the connector is up and running, you will see { "status" : "UP" }