<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic tFTPConnection (FTPS support option) login failed:  332 Account is Required in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tFTPConnection-FTPS-support-option-login-failed-332-Account-is/m-p/2250131#M148799</link>
    <description>&lt;P&gt;Has anyone had to create a tFTPConnection using FTPS that requires an account when connecting to an EDI VAN?&amp;nbsp;Account is required to direct the connection the appropriate mailbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found that the underlying java component supports having three options (user,pass,acct).&amp;nbsp;&amp;nbsp;However the configuration in the componet doesn't have that option.&amp;nbsp; &lt;/P&gt;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". &amp;nbsp;Really looking to not have to use an additional software to collect files since Talend supports FTP.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wondering if anyone has been to work around this issue simply using tJava?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any thoughts.&lt;/P&gt;&lt;P&gt;Todd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 02 Jan 2026 14:45:42 GMT</pubDate>
    <dc:creator>Todd-Schneider</dc:creator>
    <dc:date>2026-01-02T14:45:42Z</dc:date>
    <item>
      <title>tFTPConnection (FTPS support option) login failed:  332 Account is Required</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFTPConnection-FTPS-support-option-login-failed-332-Account-is/m-p/2250131#M148799</link>
      <description>&lt;P&gt;Has anyone had to create a tFTPConnection using FTPS that requires an account when connecting to an EDI VAN?&amp;nbsp;Account is required to direct the connection the appropriate mailbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found that the underlying java component supports having three options (user,pass,acct).&amp;nbsp;&amp;nbsp;However the configuration in the componet doesn't have that option.&amp;nbsp; &lt;/P&gt;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". &amp;nbsp;Really looking to not have to use an additional software to collect files since Talend supports FTP.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wondering if anyone has been to work around this issue simply using tJava?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any thoughts.&lt;/P&gt;&lt;P&gt;Todd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 14:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFTPConnection-FTPS-support-option-login-failed-332-Account-is/m-p/2250131#M148799</guid>
      <dc:creator>Todd-Schneider</dc:creator>
      <dc:date>2026-01-02T14:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: tFTPConnection (FTPS support option) login failed:  332 Account is Required</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFTPConnection-FTPS-support-option-login-failed-332-Account-is/m-p/2250132#M148800</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;The component doesn't have the option to add "account" in the tFTPConnection, as an account is not a standard protocol to have.&lt;/P&gt;&lt;P&gt;You can actually see the logic for the FTP here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://commons.apache.org/proper/commons-net/apidocs/src-html/org/apache/commons/net/ftp/FTPClient.html#line-2423" alt="https://commons.apache.org/proper/commons-net/apidocs/src-html/org/apache/commons/net/ftp/FTPClient.html#line-2423" target="_blank"&gt;https://commons.apache.org/proper/commons-net/apidocs/src-html/org/apache/commons/net/ftp/FTPClient.html#line-2423&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Talend code (open source) can be seen here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Talend/tdi-studio-se/blob/b676630e51253020ca2761cf105c6f157cedd8c5/main/plugins/org.talend.designer.components.localprovider/components/templates/FTP/commons_net_create_connection.javajet" alt="https://github.com/Talend/tdi-studio-se/blob/b676630e51253020ca2761cf105c6f157cedd8c5/main/plugins/org.talend.designer.components.localprovider/components/templates/FTP/commons_net_create_connection.javajet" target="_blank"&gt;https://github.com/Talend/tdi-studio-se/blob/b676630e51253020ca2761cf105c6f157cedd8c5/main/plugins/org.talend.designer.components.localprovider/components/templates/FTP/commons_net_create_connection.javajet&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And here's the FTP connection itself:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Talend/tdi-studio-se/tree/b676630e51253020ca2761cf105c6f157cedd8c5/main/plugins/org.talend.designer.components.localprovider/components/tFTPConnection" alt="https://github.com/Talend/tdi-studio-se/tree/b676630e51253020ca2761cf105c6f157cedd8c5/main/plugins/org.talend.designer.components.localprovider/components/tFTPConnection" target="_blank"&gt;https://github.com/Talend/tdi-studio-se/tree/b676630e51253020ca2761cf105c6f157cedd8c5/main/plugins/org.talend.designer.components.localprovider/components/tFTPConnection&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 04:57:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFTPConnection-FTPS-support-option-login-failed-332-Account-is/m-p/2250132#M148800</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-10-20T04:57:11Z</dc:date>
    </item>
  </channel>
</rss>

