Yes, DCC is the Distributed Computing Cluster
When they added that functionality, they also added a workflow activity for "Schedule PDF Page Generation"
Schedule PDF Page Generation (laserfiche.com)
This will send the document to the DCC to generate pages, and you can configure callback workflows to run when it is complete.
A few things to note about the callbacks:
- The success callback returns the entry as the Starting Entry so it is easy to pick each document up and continue processing it.
- The error callback returns a list of values even if you only sent one document at a time, so you have to parse those results. To get those results you can add an "Errors" input parameter to the workflow handling the error callback.
- There is/was a bug in the Success callback that mixes up the server and repository in the connection profile; it still worked but generated warning messages. I added a fake connection profile as a workaround because it suppresses the warning without hurting anything.



Example: Parsing the Error response using the Read JSON activity (the Errors token is added as an Input parameter for the workflow)

Example: Workaround to suppress connection profile warnings on Success callback where I created a fake connection profile with the Server and Repository values swapped (password doesn't matter since it's not actually used).
Basically, just look at your real connection profile and swap the server and repository values; they are dropdowns, but you can still click them and edit them as free form fields.
