|
|
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
|
directory |
Destination folder where the decoded files should be stored Possible values: Any valid string (e.g. |
Status values
|
|
The operation was executed successfully. |
|
|
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>