Hello
I am new to Spring and spring integration in particular
I am trying to use spring integration in our project, and need to ftp from remote server to local server.
What I see in the spring integration documentation references (inbound-channel-adapter) and it seems this continues to listen for any new ftp messages, but that is not what I'm looking for, what I'm looking for is to connect to the ftp and get all messages on the remote server and close the connection. is there anything else I need to configure other than
<bean id="ftpClientFactory"
class="org.springframework.integration.ftp.session .DefaultFtpSessionFactory">
.
.
.
</bean>
in my xml.
Regards;
Adam


Reply With Quote