session.setConfig(config);
session.connect();
channel = session.openChannel("sftp");
channel.connect();
channelSftp = (ChannelSftp)channel;
channelSftp.cd(SFTPWORKINGDIR);
File ctl = new File(ctlfile.getPath());
channelSftp.put(new FileInputStream(ctl), ctl.getName());
File hdr = new File(payinvpath);
channelSftp.put(new FileInputStream(hdr), hdr.getName());
File dtl = new File(paydispath);