Questions tagged [spring-integration-sftp]

The Secure File Transfer Protocol (SFTP) is a network protocol which allows you to transfer files between two computers on the Internet over any reliable stream.

Spring Integration provides support for file transfer operations via SFTP.

The SFTP protocol requires a secure channel, such as SSH, as well as visibility to a client’s identity throughout the SFTP session.

Spring Integration supports sending and receiving files over SFTP by providing three client side endpoints: Inbound Channel Adapter, Outbound Channel Adapter, and Outbound Gateway It also provides convenient namespace configuration to define these client components.

xmlns:int-sftp="http://www.springframework.org/schema/integration/sftp"
xsi:schemaLocation="http://www.springframework.org/schema/integration/sftp
    http://www.springframework.org/schema/integration/sftp/spring-integration-sftp.xsd"

for more, please look through spring official SFTP page

332 questions
-1
votes
1 answer

Spring Integration - upload file to Dynamic SFTP Server

I am trying to upload files to dynamic SFTP servers whose config details I will receive in a String message with file content. I have researched about spring Integration which will help me in dynamically connecting to SFTP servers to upload the…
-2
votes
2 answers

Issue in reading a excel file from SFTP server using spring integration

I am new in Spring integration so it might be silly for experts. I want to read a excel file which is on a SFTP server every morning (for now i set to read every minute as below). I have written all code which recive a inputstream of excel and using…
1 2 3
22
23