ABCpdf can spawn 10 worker processes to generate PDFs. This can be changed setting the 'HtmlProcessPoolSize' registrykey. I tried setting it to 16, but only 10 processes spawn.
This setting should be configurable through configuration settings as well, which I is more interesting in our case. It gives us more control through the application. ABCpdf: SetConfigSection
Here is my configuration (or at least part of it).
<configSections>
<section name="ABCpdf9.Section" type="WebSupergoo.ABCpdf9.ConfigSection, ABCpdf" allowLocation="true" allowDefinition="Everywhere" allowExeDefinition="MachineToLocalUser" restartOnExternalChanges="true" requirePermission="true" />
</configSections>
<ABCpdf9.Section>
<Preferences>
<clear />
<add key="HtmlProcessPoolSize" value="16" />
</Preferences>
</ABCpdf9.Section>
But there are still only 10 workerprocesses available.
Anyone knows what I am missing?