Versions Compared

Key

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

...

To handle multiple files follow these steps:

...

Table of Contents
minLevel3

...

View the flow

The flow of an application handling multiple files could be as follow:

...

The previous steps are needed for a simple and complete application. The following services and constructs can be used in more specific situations.

Get meta data service

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

By using the AQ_File_Move it is possible to move a file from one connection to another connection. This could be useful when uploading to memory by default, 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

Trigger a flow when uploading

There could be a need for directly triggering a flow when uploading a file. This could be useful when calling some services for setting information.

...

Every time a new file is uploaded, this exit event will be taken.

Example application

See the file upload example project.

...