Skip to main content
Skip table of contents

PDF Merger

This adapter merges multiple unprotected PDF documents into one PDF document.

This adapter expects an adapter-specific input XML structure which contains multiple Base64-encoded strings with the data of PDF documents. The adapter outputs an XML document which contains a Base64-encoded string with the data of the merged PDF document.

Properties

Operation

Determines which operation the adapter executes

Possible values: Merge: Merge multiple PDF documents into one PDF document.

Parameters

Adapter

Main class of the adapter (do not change!)

Possible values: de.softproject.integration.adapter.PDFMerger: Main class (default)

Status values

1The operation was executed successfully.
-1The operation failed due to a technical error.

Input

This adapter expects an adapter-specific input XML structure in which all PDF document data is stored as Base64-encoded strings in the desired order (defined in the order attribute).

HTML/XML
<Data>
   <input order="1">
      <!--Base64-encoded character string with data from the first PDF document-->
   </input>
   <input order="2">
      <!--Base64-encoded character string with data from the second PDF document-->
   </input>
</Data>

Output

The successfully executed adapter returns an XML document with the following pattern:

HTML/XML
<Data>
   <output mimetype="application/pdf" encoding="base64">
      <!--Base64-encoded character string with data from the merged PDF document-->
   </output>
</Data>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.