Is there any plan for Javelin to support FTPS, which is a different protocol then SFTP?
Mainframe team allows to do uploads and downloads with that protocol.
All supported Javelin releases.
Javelin does not have a native way to do this, can use Javelin to run a PowerShell script which is SFTP capable.
The attached file, pwshellexample.vwf, is a Javelin PowerShell script execution. It does so by spinning up a Process object. The scriptFilename variable holds the PowerShell script location and logging the Console Output at the end. We don't have specifics on using PowerShell to perform SFTP or FTPS but it should be possible. This is an example and as such does not have error handling, but this should be easy enough to do if you look into the Process Object properties and methods and handle it in your code if needed.
You could also replace the scriptFilename variable contents with actual PowerShell commands such as Write-Host 'Hello'. Ideally we recommend keeping it pointing to an actual script file.
For more information on making PowerShell do FTPS and SFTP see the following link: Easy way to connect to FTPS and SFTP using PowerShell
.