Questions tagged [spring-integration-ftp]
17 questions
2
votes
0 answers
Spring Integration how to get file from many ftp server and dirictory?
I'm trying to set up fetching new files from multiple ftp servers and directories for post-processing.
At the moment, only the first server from the collection is connected. Tell me what I'm doing wrong.
With my implementation, I see that there is…

mrtopgun
- 25
- 5
1
vote
1 answer
Spring Integration is not detecting files on FTP Folder
Currently I'm facing a problem where I don't know what to do to resolve it. I'm developing a simple application that transfer files through different FTP and SFTP servers to be processed. Well, at the beginnig those servers weren't ready, so I used…

jmartinez
- 71
- 1
- 5
1
vote
0 answers
Embedding Apache FTP Server : Not able to login with 40 user Concurrently
I am using this Embedded server for integration testing of Spring-integration-ftp.
I have to connect this ftp server to 40 spring integration ftp service I have also added ConcurrentLoginPermission to 50 still I am getting
SENT: 421 Maximum login…

Rishi thakar
- 11
- 2
1
vote
1 answer
Spring Integration DSL History issue
I have to setup the flows dynamically.
Example:
@Component
@Slf4j
public class FTPFlow {
@Autowired
private IntegrationFlowContext integrationFlowContext;
@EventListener(ApplicationReadyEvent.class)
public void setup(){
…

Makky
- 17,117
- 17
- 63
- 86
1
vote
1 answer
Spring Integration DSL FTP Issue
I have dynamic spring integration flow
FTP -> downloads the files and put in the directory "C:\testing"
Transformer will move the files to "XYZ" directory
SFTP -> downloads the files and put in the directory "C:\testing"
Transformer…

Makky
- 17,117
- 17
- 63
- 86
0
votes
1 answer
Is there a way I send mail with all files (as Zip) received in Spring Integration FTP instead sending the files Individually per Message received
I have a Spring Boot application based on Spring Integration FTP where I can DOWNLOAD/UPLOAD files.
I need to send the files (as ZIP) received via mail but the problem is, I can only do this per message a file received which means if I receive 100…

Chunks
- 13
- 4
0
votes
1 answer
Spring Integration Ftp | how to test code for move remote files into another directory in remote server after FTP fetch complete
We have a remote FTP server in which we have a folder "test/" which contains certain text files. The "test/" folder has another subdirectory "archive/" inside it.
FTPserver->
-test/
---abc.txt
---xyz.txt
---archive/
We are able to download all the…

Goku21
- 3
- 3
0
votes
1 answer
Spring Integration Ftp | how to move remote files into another directory in remote server after FTP fetch complete
We have a remote FTP server in which we have a folder "test/" which contains certain text files.
The "test/" folder has another subdirectory "archive/" inside it.
FTPserver->
-test/
---abc.txt
---xyz.txt
---archive/
We are able to download all the…

Wolf17
- 27
- 7
0
votes
1 answer
FtpSession.exist(path) doesn't work with files
I'm trying to check the existance of a file in an FTP server using Spring Integration but it doesn't seem to work. It works fine with directories but not with files. In documentation is mentioned that works with directories and files. Am I building…

KrisKris1
- 189
- 3
- 17
0
votes
1 answer
Spring Integration CompositeFileListFilter
I am using CompositeFileListFilter to add two filters. Firstly, I want to execute AbstractPersistentFileListFilter with the default implementation, thereby protecting it from duplication.
Second, I use my own implementation, which checks the…

mrtopgun
- 25
- 5
0
votes
1 answer
How to get files recursively from subdirectories spring-integration
please tell me how you can get files recursively from subdirectories?
I add an expression to select a remote directory to my IntegrationFlow -
String fileNameRegex = "(\ d {4} | Success | Error |. *. Xml)";
Ftp.inboundStreamingAdapter (template ()).…

mrtopgun
- 25
- 5
0
votes
1 answer
SftpPersistentAcceptOnceFileListFilter + JdbcMetadataStore not pushing values in INT_METADATA_STORE
I am writting sftp-integration-ftp inbound flow code to read file from FTP server and want to ensure that if multiple instances of my service and reading file from same input location then only one process the file from the input directory to avoid…

Tushar Dusane
- 11
- 2
0
votes
1 answer
Spring Integration FTP - InboundChannelAdapter Stopped working with new FTP server
I've been using Spring-Integration 4.1.6 to connect to an old FTP server for several years now. The FTP server was recently replaced with a newer version (the new server is Globalscape EFT Enterprise) and immediately my int-ftp…

RodL
- 131
- 1
- 7
0
votes
3 answers
Spring Integration Mail: Send email after all database inserts
Hello I have an integration flow that splits a file line by line, transforms each line into a POJO and then inserts that POJO into a db via JDBC outbound gateway.
I want to be able to send a single email once the process of the file has completed.…

Addison Joseph
- 126
- 2
- 15
0
votes
1 answer
Spring Integration FTP in Docker container: not triggering flow
I am having quite a time figuring out where my issue is stemming from. I can run locally, I have built my .jar and ran that locally too.
I have my integration flow set as follows
@Bean
IntegrationFlow integrationFlow(final DataSource datasource)…

Addison Joseph
- 126
- 2
- 15