Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: Doing PUTs and GETs with the file payload as a FileStream

WinSCP does not support this.
Ehopp

Doing PUTs and GETs with the file payload as a FileStream

What I need to do is to send encrypted files over SFTP using an SSH private key file with the file being delivered in plain text. This needs to be done without creating a temp plain text file on our end. So the flow would be...
***Sending Data***
[Encrypted File] -----+data stream+---> {Encryption Software} ------+data stream+-----> {SFTP Software} ------+SSH data stream+------> [End point File]

***Receiving Data***
[End point File] ------+SSH data stream+------> {SFTP Software} -----+data stream+---> {Encryption Software} ------+data stream+----->[Encrypted File]

I see how you could use StdIn to pass WinSCP a file name but I want to actually send the data stream through StdIn.

Can this be done via WinSCP? If not, is there a free product out there that would?