Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Goal

This how-to describes how to use the multiple file upload.

...

ParameterValue
Connection<connection name>
FileIdFile.Id
CustomMetaDataMeta = File.Meta

Get Meta Data

Is is possible to retrieve the meta data when providing an Id.

ParameterValue
Connection<connection name>
FileIdFile.Id
FileNameFile.Name
FileTypeFile.Type
FileSizeFile.Size

 

Move a File

 

Flowing after an upload

By using the AQ_File_Move it is possible to move a file from one connection to another connection. This could be handy when uploading on default to memory, adding some meta data and storing it on the file system afterwards. This service can be used by entering the following parameters.

ParameterValue
ConnectionFrom<connection name from one system>
ConnectionTo<connection name to another system>
FileIdFile.Id

Flowing directly after an upload

There could be a need for uploading a file which directly triggers a flow..

Example application

See the file upload example project.

...