Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
cancel
Showing results for 
Search instead for 
Did you mean: 
Todd-Schneider
Contributor
Contributor

tFTPConnection (FTPS support option) login failed: 332 Account is Required

Has anyone had to create a tFTPConnection using FTPS that requires an account when connecting to an EDI VAN? Account is required to direct the connection the appropriate mailbox.

I found that the underlying java component supports having three options (user,pass,acct).  However the configuration in the componet doesn't have that option. 

I was able to successfully connect when in debug by setting a break point on the ftp_tFTPConntion_1.login() and sending my own using all three parameters using "debug shell".  Really looking to not have to use an additional software to collect files since Talend supports FTP.   

Wondering if anyone has been to work around this issue simply using tJava?

Thank you for any thoughts.

Todd

Labels (4)
1 Reply
Anonymous
Not applicable

Hello,

The component doesn't have the option to add "account" in the tFTPConnection, as an account is not a standard protocol to have.

You can actually see the logic for the FTP here:

https://commons.apache.org/proper/commons-net/apidocs/src-html/org/apache/commons/net/ftp/FTPClient....

 

Talend code (open source) can be seen here:

https://github.com/Talend/tdi-studio-se/blob/b676630e51253020ca2761cf105c6f157cedd8c5/main/plugins/o...

 

And here's the FTP connection itself:

https://github.com/Talend/tdi-studio-se/tree/b676630e51253020ca2761cf105c6f157cedd8c5/main/plugins/o...

Best regards

Sabrina