Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I am using tFTPConnection component in Talend 6.2.1
When I enable FTPS Support (Security Mode Implicit), I get an error 'com.enterprisedt cannot be resolved to a type'? What to I need to to resolve this? Will it then work on tFTPFileList and tFTPGet components?
Also, can I put empty Keystore File and Password?
Cheers.
Just an update, looks like the error happens on tFTPFileList:
com.enterprisedt.net.ftp.FTPClient ftp_tFTPFileList_2
Here are the tFTPConnection and tFTPFileList component settings:
Thanks in advance!
you need to specify filemask
It does not build even if I put a filemask or not. Here is what the code looks like:
can you enable SFTP Support insted of FTP Support.
Those are the only errors showing up.
If I just use FTP, this is the generated code:
com.enterprisedt.net.ftp.FTPClient ftp_tFTPConnection_1 = new com.enterprisedt.net.ftp.FTPClient();
...
com.enterprisedt.net.ftp.FTPClient ftp_tFTPFileList_1 = null;
ftp_tFTPFileList_1 = (com.enterprisedt.net.ftp.FTPClient) globalMap
.get("conn_tFTPConnection_1");
But if I use FTPS Support in tFTPConnection, this is the generated code:
it.sauronsoftware.ftp4j.FTPClient ftp_tFTPConnection_1 = null;
...
ftp_tFTPConnection_1 = new it.sauronsoftware.ftp4j.FTPClient();
com.enterprisedt.net.ftp.FTPClient ftp_tFTPFileList_2 = null;
ftp_tFTPFileList_2 = (com.enterprisedt.net.ftp.FTPClient) globalMap
.get("conn_tFTPConnection_1");
So it looks like tFTPFileList is not being casted to use the 'it.sauronsoftware.ftp4j.FTPClient'
Unfortunately, I am not able to use SFTP because it is not supported by the server.