- 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 Transformation Server is controlled by transformserver.transformationTimeout and transformer.timeout.default. This means that with the default settings, SkyVault stops processing after 120 seconds, where Transformation Server attempts to transform a document for up to 300 seconds and any results returned after 120 seconds are ignored by SkyVault.
transformserver.transformationTimeout=120 transformer.timeout.default=120the Transformation Server stops processing at the same time as the default SkyVault system transformation timeout.
Configuration using the global properties file
You configure the Transformation Client by adding the relevant properties to the SkyVault global properties file.
- Open the SkyVault-global.properties file.
- Add the required properties for configuration settings on the Transformation Client.
- Save the SkyVault-global.properties file, and then restart your SkyVault server.
Property | Default value | Description |
---|---|---|
transformserver.aliveCheckTimeout | 2 | Sets the timeout for the connection tester in seconds. If the 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 Transformation Server.
Note: Do not change this default.
|
transformserver.password | SkyVault | The password used to connect to the 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 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 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 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 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}