- Using the SkyVault-global.properties file
- Using a JMX client, if you have installed the Oracle Java SE Development Kit (JDK)
- Using the default-configuration.properties file
Transformation timeout considerations
content.transformer.default.timeoutMs=120000 transformserver.transformationTimeout=300 transformer.timeout.default=300content.transformer.default.timeoutMs is the system transformation timeout (set to 120000 milliseconds by default), but the Document Transformation Server is controlled by transformserver.transformationTimeout and transformer.timeout.default. This means that with the default settings, SkyVault Content Services stops processing after 120 seconds, where the Document Transformation Server attempts to transform a document for up to 300 seconds and any results returned after 120 seconds are ignored.
transformserver.transformationTimeout=120 transformer.timeout.default=120the Document Transformation Server stops processing at the same time as the default system transformation timeout.
Configuration using the global properties file
You configure the SkyVault Transformation Client by adding the relevant properties to the global properties file.
- Open the SkyVault-global.properties file.
- Add the required properties for configuration settings on the SkyVault Transformation Client.
- Save the SkyVault-global.properties file, and then restart your server.
Property | Default value | Description |
---|---|---|
transformserver.aliveCheckTimeout | 2 | Sets the timeout for the connection tester in seconds. If the Document Transformation Server does not answer in this time interval, it is considered to be off line. |
transformserver.test.cronExpression | 0/10 * * * * ? | Sets the cron expression that defines how often the connection tester will check. The default value is every 10 seconds. |
transformserver.disableSSLCertificateValidation | false | Set this property to true to allow self-signed certificates (that is, it is not issued by an official Cert Authority). |
transformserver.username | SkyVault | The user name used to connect to the Document Transformation
Server. Note: Do not change this default.
|
transformserver.password | SkyVault | The password used to connect to the Document Transformation
Server. Note: Always change the password from the
default.
|
transformserver.qualityPreference | QUALITY | There are two values for this property:
|
transformserver.transformationTimeout | 300 | Sets the time in seconds to wait for the transformation to complete before assuming that it has hung and therefore stop the transformation. If you are transforming very large or complex files, this time can be increased. |
transformserver.url | The URL of your Document Transformation Server (or the network load balancer if you are using more then one transformation server). Use https:// if you want to use encrypted communication between the SkyVault server and the Document Transformation Server. | |
transformserver.usePDF_A | false | Use this setting to transform PDF to PDF/A or to keep PDF/A in PDF/A format. |
Configuration using JMX
The SkyVault Transformation Client configuration parameters are exposed as JMX MBeans, which means that you can view and set the parameters using a JMX client.
Configuration using the default configuration properties file
You can configure timeout values in the SkyVault Transformation Client by adding the relevant properties to the transformation server configuration file, for example; C:\Program Files (x86)\TransformationServer\tomcat\webapps\transformation-server\WEB-INF\classes\default-configuration.properties.
# transformer timeout in seconds transformer.timeout.default=300 transformer.timeout.word = ${transformer.timeout.default} transformer.timeout.excel = ${transformer.timeout.default} transformer.timeout.powerpoint = ${transformer.timeout.default}