A simple way to activate InterFormNG2 processing is to monitor a directory for input files.
This is done using the workflow input type:
Read from file
InterFormNG2 monitors folders by checking them at regular intervals (every 0.5 seconds) and processing any files found inside.
The directory that is monitored for new files.
If multiple workflows monitor the same directory, then each workflow must have a unique Filename filter.
The filter selects files based on patterns.
* → matches any string
? → matches any single character
*.xml
*.xml,*.XML
"Parameter(s) not unique"
If you are going to do conditions and/or Xpath expressions, then it is recommended to refer to an optional, sample XML file
If you click the magnifying glass, then you can select the sample XML file from the Library documents, that you want to use as a reference.
Here you can select between the values below. This states which input files to select first, if there are more input files found in the input directory than the limit stated in the Max files per poll field below.
If you, for example, want to ensure that older input files are processed first, then you should consider selecting: Oldest first
However, there is a limitation to this because sorting based on the creation timestamp depends on how precise the timestamp is.
If you use this method to monitor a folder in the IFS on an IBM i, the timestamp may not be accurate enough if the files are created less than a second apart.
Use a REST webservice to process files in the correct order.
For the Spool2XML module, consider sorting by: File name (Alphanumeric A-Z) since the file name contains a detailed timestamp.
A better approach could be to call a program based on the demo source XML_NG2CMD: Found in source file APISRC in the IFORMNG2 library to use the NG2CMD command to call a workflow for processing the XML file.
Disable the multithreaded option (see below).
Alternatively, use different folders:
Fast-processing folders: For cases where sequence is not critical.
Slower folders: Processed without multithreading but in sequence.
You should set a realistic number of files that can be processed within each poll.
Since InterFormNG2 polls every 0.5 seconds, the recommended value should be a maximum of 10.
Default value: 5
If the workflow processes very few but very large files, it may be a good idea to reduce this to 1.
The files in the monitored folder are executed in sequence – one at a time (not in parallel).
Other folders, however, are processed in parallel.
The default behaviour is, that InterFormNG2 will keep the input files forever, but you can change that via this parameter.
Forever
1 day
2 days
3 days
7 days
30 days
Enabled → Multiple input files from the same folder are processed in parallel.
Disabled (default) → Files are processed one at a time.
Increases performance.
Multiple threads can process more files faster.
Output files may be out of order (if sequence matters, disable this).
Uses more RAM than single-threading.
Another workflow to be called, if there is an error during processing of this workflow. This can be overwritten with another workflow via the error handler.
You can also consider a general error report email setup for the whole tenant. There are hints for usage in the section for the error handler.
Here is an example of how to move files to an error folder, if an error occurred.