Hi, I'm very new in spring.
I need to send a file to a ftp server with Spring Integration.

I have sucess to retrieve files from FTP Server doing the following in my configuration file:

...
<channel-adapter id="channelInput" source="fileFTP">
<poller period="60000"/>
</channel-adapter>
<ftp-source id="fileFTP"
host="localhost"
port="21"
username="cristian"
password="123"
local-working-directory="${java.io.tmpdir}/output"
remote-working-directory="/"/>
....

Like I said before, now I need to send file. How can I do that. Please, if you can send my and example.

Thanks a lot and sorry my english. I speak spanish :-)