Skip to main content

Rendering-service on Windows

1. Download

Get the latest rendering-service jar file here.

Unzip downloaded zipped jar file into your publishing server rendering-service subfolder.

2. Configuration

Please refer here for detailed instructions.

3. Running the rendering-service

Depending on the rendering-server you use, run:

..\java\jdk17\bin\java -jar rendering-service-4.4.jar --spring.config.additional-location=file:"application-pdf-renderer.yml" --workers.config=workers-config-pdf.json

or

..\java\jdk17\bin\java -jar rendering-service-4.4.jar --spring.config.additional-location=file:"application-ids.yml" --workers.config=workers-config-ids.json

4. Optional Windows Service creation

If you want to run your rendering-service automatically, you can create a Windows Service.

  1. Adjust the rendering-service-4.4.xml file to your needs and paths:
<service>
<id>rendering-service-4.4</id>
<name>rendering-service-4.4</name>
<description>Rendering Service for priint:suite 4.4</description>
<executable>C:\PubServer440\java\jdk17\bin\java</executable>
<arguments>-jar "%BASE%\rendering-service-4.4.jar" --spring.config.location=file:"%BASE%\application-pdf-renderer.yml" --workers.config="%BASE%\workers-config-pdf.json"</arguments>
<logmode>rotate</logmode>
</service>
  1. Create the new service:
rendering-service-4.4.exe install