Base64 Batch Decoder
This adapter decodes Base64-encoded data from an adapter-specific XML structure, splits the result into separate files, and stores them in a folder. |
Properties
Operation | Determines which operation the adapter executes Possible values: |
Parameters
Adapter | Main class of the adapter (do not change!) Possible values: |
directory | Destination folder where the decoded files should be stored Possible values: Any valid string (e.g. |
Status values
1 | The operation was executed successfully. |
-1 | The operation failed due to a technical error. |
Input
This adapter expects an adapter-specific input XML structure. This contains the file name and the Base64-encoded file content for each file to be decoded. Each <document/>
element represents a file to be decoded.
<data>
<documents>
<document>
<filename><!--Dateiname--></filename>
<content><!--Base64-kodierte Daten--></content>
</document>
</documents>
</data>