Difference between pres connect and planetpress connect

Hello…,

what is the difference between pres connect and planetpress connect?

In a nutshell, PReS Connect has everything in PlanetPress Connect, plus these additional features:

  • AFP / IPDS Output
  • Performance packs on multiple servers
  • More pages per minute

Contact your reseller for more detailed information on both products.

Hello Phil,

is it possible to integrate PReS Workflow with other systems with REST API ?.
for example, Other systems send data to PReS Workflow via REST API and PReS Workflow create PDF files.

Hi,

The easiest way to do this is to use HTTP Server Input / NodeJS Server Input / Input SOAP. You can attach your payload to an HTTP POST or GET and this type of process will capture that information and respond to your HTTP call with whatever you create as an action in that process.

At the end of any HTTP process, a Delete plugin will suffice to return the data in-stream.

Something like this:

14

In this case, I’m simply posting a jobID to http://<hostname>:8080/create-pdf which I capture and use to load in a PDF based on %{jobID}.pdf.

NB: Port defined in workflow preferences.

The originator will receive a PDF in return.

Hope this helps.

Hi,

Okay, thank you.