Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
_AnonymousUser
Specialist III
Specialist III

[resolved] Multiple FTP Conex

Greetings, I want to do a job to perform multiple FTP connections.
Connection parameters must be taken from a properties file.
The difficulty is that in the properties file must be specified on property ' ftp.server.ips' ip list, therefore the number of connections is not previously known, can be a connection or can be several.
The question is how should design work, or which components should I use?
Thank you very much.
Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

You may use a general file component such as tFileInputDelimited to read connection information and iterate each row, the job design looks like:
tFileInputDelimited--main--tFlowToIterate--iterate--tFTPConnection--oncomponentok--do other process.

View solution in original post

2 Replies
Anonymous
Not applicable

You may use a general file component such as tFileInputDelimited to read connection information and iterate each row, the job design looks like:
tFileInputDelimited--main--tFlowToIterate--iterate--tFTPConnection--oncomponentok--do other process.
Anonymous
Not applicable

Great!!!
Very, Very Thank's You!!