<?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>article Talend Studio: Apache HttpClient Invalid cookie header warnings during Excel output in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Talend-Studio-Apache-HttpClient-Invalid-cookie-header-warnings/ta-p/2555626</link>
    <description>&lt;P class="isSelectedEnd"&gt;&lt;SPAN&gt;When executing a Talend Job that writes data to an Excel file, the Job may generate repeated warnings similar to:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="isSelectedEnd lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;[WARN ] 08:39:14 org.apache.http.client.protocol.ResponseProcessCookies -&lt;BR /&gt;Invalid cookie header: "set-cookie: activate_ca_modal_triggered="";&lt;BR /&gt;Expires=Thu, 01 Jan 1970 00:00:10 GMT; Path=/".&lt;BR /&gt;Invalid 'expires' attribute: Thu, 01 Jan 1970 00:00:10 GMT&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="isSelectedEnd"&gt;&lt;SPAN&gt;The same J&lt;/SPAN&gt;ob may execute without these warnings when the output component is changed to &lt;STRONG&gt;tFileOutputDelimited&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P class="isSelectedEnd"&gt;&lt;SPAN&gt;In most cases, this message is generated by &lt;STRONG&gt;Apache HttpClient while processing an HTTP response cookie&lt;/STRONG&gt;. It is a warning from the HTTP client cookie parser and is not, by itself, evidence that the Excel output operation has failed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Talend's &lt;/SPAN&gt;&lt;STRONG&gt;tFileOutputExcel &lt;/STRONG&gt;&lt;SPAN&gt;component writes Excel files as part of the File component family.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P style="white-space: pre-wrap;"&gt;Because the warning is cosmetic, the recommended approach is to suppress the specific logger.&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;In Talend Studio, navigate to &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;File&lt;/STRONG&gt;&lt;SPAN&gt; &amp;gt; &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;Edit Project Properties&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Go to &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;Log4j&lt;/STRONG&gt;&lt;SPAN&gt; (or &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;Log4j2&lt;/STRONG&gt;&lt;SPAN&gt;, depending on your Studio version).&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Add the following XML configuration snippet inside th&lt;/SPAN&gt;e &lt;STRONG&gt;&amp;lt;Loggers&amp;gt;&lt;/STRONG&gt; section of your &lt;STRONG&gt;log4j2.xml&lt;/STRONG&gt; (or &lt;STRONG&gt;log4j.xml&lt;/STRONG&gt;) template:&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;XML&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;!-- Suppress Apache HttpClient cookie parser warnings --&amp;gt;
&amp;lt;Logger name="org.apache.http.client.protocol.ResponseProcessCookies" level="ERROR" additivity="false"&amp;gt;
    &amp;lt;AppenderRef ref="Console"/&amp;gt;
&amp;lt;/Logger&amp;gt;
&amp;lt;Logger name="org.apache.http" level="ERROR" additivity="false"&amp;gt;
    &amp;lt;AppenderRef ref="Console"/&amp;gt;
&amp;lt;/Logger&amp;gt;&lt;/LI-CODE&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;Apply and Close&lt;/STRONG&gt;&lt;SPAN&gt; to save the project settings.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Re-run the job locally in Studio or redeploy the job artifact to your Remote Engine / Job Server.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Confirm that the &lt;/SPAN&gt;&lt;STRONG&gt;ResponseProcessCookies &lt;/STRONG&gt;&lt;SPAN&gt;warning no longer appears in the console output.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Cause&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P style="white-space: pre-wrap;"&gt;The warning originates from Apache HttpClient, used internally by Talend and related libraries such as Apache POI or components that perform HTTP-related operations.&lt;/P&gt;
&lt;P style="white-space: pre-wrap;"&gt;During Excel output processing, a library initialization or background request can receive a &lt;SPAN&gt;Set-Cookie&lt;/SPAN&gt; header that uses an &lt;SPAN&gt;Expires&lt;/SPAN&gt; value in the past (&lt;SPAN&gt;Thu, 01 Jan 1970...&lt;/SPAN&gt;). This is a standard technique to delete a cookie. Apache HttpClient’s default cookie specification is strict about date formatting and logs a WARN-level message when it cannot parse the attribute according to its expected rules.&lt;/P&gt;
&lt;P style="white-space: pre-wrap;"&gt;The delimited-file path does not trigger the same library behavior or HTTP interaction, so the warning does not appear. The message is purely informational and does not affect data integrity, job success, or the generated Excel file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;Talend Studio&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Wed, 02 Sep 2026 08:41:09 GMT</pubDate>
    <dc:creator>Lusemar_Oliveira</dc:creator>
    <dc:date>2026-09-02T08:41:09Z</dc:date>
    <item>
      <title>Talend Studio: Apache HttpClient Invalid cookie header warnings during Excel output</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Talend-Studio-Apache-HttpClient-Invalid-cookie-header-warnings/ta-p/2555626</link>
      <description>&lt;P class="isSelectedEnd"&gt;&lt;SPAN&gt;When executing a Talend Job that writes data to an Excel file, the Job may generate repeated warnings similar to:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="isSelectedEnd lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;[WARN ] 08:39:14 org.apache.http.client.protocol.ResponseProcessCookies -&lt;BR /&gt;Invalid cookie header: "set-cookie: activate_ca_modal_triggered="";&lt;BR /&gt;Expires=Thu, 01 Jan 1970 00:00:10 GMT; Path=/".&lt;BR /&gt;Invalid 'expires' attribute: Thu, 01 Jan 1970 00:00:10 GMT&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="isSelectedEnd"&gt;&lt;SPAN&gt;The same J&lt;/SPAN&gt;ob may execute without these warnings when the output component is changed to &lt;STRONG&gt;tFileOutputDelimited&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P class="isSelectedEnd"&gt;&lt;SPAN&gt;In most cases, this message is generated by &lt;STRONG&gt;Apache HttpClient while processing an HTTP response cookie&lt;/STRONG&gt;. It is a warning from the HTTP client cookie parser and is not, by itself, evidence that the Excel output operation has failed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Talend's &lt;/SPAN&gt;&lt;STRONG&gt;tFileOutputExcel &lt;/STRONG&gt;&lt;SPAN&gt;component writes Excel files as part of the File component family.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P style="white-space: pre-wrap;"&gt;Because the warning is cosmetic, the recommended approach is to suppress the specific logger.&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;In Talend Studio, navigate to &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;File&lt;/STRONG&gt;&lt;SPAN&gt; &amp;gt; &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;Edit Project Properties&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Go to &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;Log4j&lt;/STRONG&gt;&lt;SPAN&gt; (or &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;Log4j2&lt;/STRONG&gt;&lt;SPAN&gt;, depending on your Studio version).&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Add the following XML configuration snippet inside th&lt;/SPAN&gt;e &lt;STRONG&gt;&amp;lt;Loggers&amp;gt;&lt;/STRONG&gt; section of your &lt;STRONG&gt;log4j2.xml&lt;/STRONG&gt; (or &lt;STRONG&gt;log4j.xml&lt;/STRONG&gt;) template:&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;XML&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;!-- Suppress Apache HttpClient cookie parser warnings --&amp;gt;
&amp;lt;Logger name="org.apache.http.client.protocol.ResponseProcessCookies" level="ERROR" additivity="false"&amp;gt;
    &amp;lt;AppenderRef ref="Console"/&amp;gt;
&amp;lt;/Logger&amp;gt;
&amp;lt;Logger name="org.apache.http" level="ERROR" additivity="false"&amp;gt;
    &amp;lt;AppenderRef ref="Console"/&amp;gt;
&amp;lt;/Logger&amp;gt;&lt;/LI-CODE&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; white-space: normal;"&gt;Apply and Close&lt;/STRONG&gt;&lt;SPAN&gt; to save the project settings.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Re-run the job locally in Studio or redeploy the job artifact to your Remote Engine / Job Server.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="white-space: pre-wrap;"&gt;&lt;SPAN&gt;Confirm that the &lt;/SPAN&gt;&lt;STRONG&gt;ResponseProcessCookies &lt;/STRONG&gt;&lt;SPAN&gt;warning no longer appears in the console output.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Cause&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P style="white-space: pre-wrap;"&gt;The warning originates from Apache HttpClient, used internally by Talend and related libraries such as Apache POI or components that perform HTTP-related operations.&lt;/P&gt;
&lt;P style="white-space: pre-wrap;"&gt;During Excel output processing, a library initialization or background request can receive a &lt;SPAN&gt;Set-Cookie&lt;/SPAN&gt; header that uses an &lt;SPAN&gt;Expires&lt;/SPAN&gt; value in the past (&lt;SPAN&gt;Thu, 01 Jan 1970...&lt;/SPAN&gt;). This is a standard technique to delete a cookie. Apache HttpClient’s default cookie specification is strict about date formatting and logs a WARN-level message when it cannot parse the attribute according to its expected rules.&lt;/P&gt;
&lt;P style="white-space: pre-wrap;"&gt;The delimited-file path does not trigger the same library behavior or HTTP interaction, so the warning does not appear. The message is purely informational and does not affect data integrity, job success, or the generated Excel file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;Talend Studio&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 02 Sep 2026 08:41:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Talend-Studio-Apache-HttpClient-Invalid-cookie-header-warnings/ta-p/2555626</guid>
      <dc:creator>Lusemar_Oliveira</dc:creator>
      <dc:date>2026-09-02T08:41:09Z</dc:date>
    </item>
  </channel>
</rss>

