Hi Currently I am connecting to Mainframe server to transfer file with username and password using below code.
Ftp ftp= new Ftp();
//ftp over ssl -> secure ftp protocol for mainframe
ftp.Settings.SslAcceptAllCertificates = true;
ftp.Connect(ftpServerName, SslMode.Explicit);
ftp.Login(ftpUserName, ftpPassword);
ftp.TransferType = FtpTransferType.Ascii;
ftp.Site("RECFM=FB LRECL=100 BLOCKSIZE=0");
ftp.PutFile(sourceFilePath, ftpFilePath);
But now I have to use password less approach to connect to Mainframe server. How can I achieve this in Rebex.