<?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 [resolved] 411 Length Required Exception in tRestClient Component in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352942#M119230</link>
    <description>Hi All, 
&lt;BR /&gt;I got an error while sending a post request using tRestClient with the content-type and accept type are application/json.But when I try to send the same request with tRest component it's working fine.what could be the reason why I'm not able do the same request with the tRestClient component? 
&lt;BR /&gt;Because in tRest component I only get the error code but with the tRestClient component I also get error message including error code.So I can handle the exceptions very easily. 
&lt;BR /&gt;I tried with and wthout 
&lt;B&gt;Content-Length&lt;/B&gt; header and in both the cases getting the same exception. 
&lt;BR /&gt;Attached the screen shot for your reference. 
&lt;BR /&gt;Can any one please help me on this? 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt;Out bound message on console : 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt;In bound message on console : 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt;Thanks 
&lt;BR /&gt;Sayagoud Ravelly</description>
    <pubDate>Wed, 10 Sep 2014 13:59:21 GMT</pubDate>
    <dc:creator>_AnonymousUser</dc:creator>
    <dc:date>2014-09-10T13:59:21Z</dc:date>
    <item>
      <title>[resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352942#M119230</link>
      <description>Hi All, 
&lt;BR /&gt;I got an error while sending a post request using tRestClient with the content-type and accept type are application/json.But when I try to send the same request with tRest component it's working fine.what could be the reason why I'm not able do the same request with the tRestClient component? 
&lt;BR /&gt;Because in tRest component I only get the error code but with the tRestClient component I also get error message including error code.So I can handle the exceptions very easily. 
&lt;BR /&gt;I tried with and wthout 
&lt;B&gt;Content-Length&lt;/B&gt; header and in both the cases getting the same exception. 
&lt;BR /&gt;Attached the screen shot for your reference. 
&lt;BR /&gt;Can any one please help me on this? 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt;Out bound message on console : 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt;In bound message on console : 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt;Thanks 
&lt;BR /&gt;Sayagoud Ravelly</description>
      <pubDate>Wed, 10 Sep 2014 13:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352942#M119230</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2014-09-10T13:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352943#M119231</link>
      <description>Hi 
&lt;BR /&gt;This is most likely due to the JSON payload exceeding a certain limit and HTTPUrlConnection starting using the chunked encoding which does not support Content-Length. Generally speaking the chunked encoding is more efficient for transferring the large payloads. Some legacy servers (non-Apache CXF based) can not deal with the chunked encoding and fail. 
&lt;BR /&gt;This issue has been raised recently and tRESTClient will allow disabling the chunked encoding in the coming ESB Studio release 
&lt;BR /&gt;HTH, Sergey</description>
      <pubDate>Wed, 10 Sep 2014 16:30:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352943#M119231</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-10T16:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352944#M119232</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hi&lt;BR /&gt;This is most likely due to the JSON payload exceeding a certain limit and HTTPUrlConnection starting using the chunked encoding which does not support Content-Length. Generally speaking the chunked encoding is more efficient for transferring the large payloads. Some legacy servers (non-Apache CXF based) can not deal with the chunked encoding and fail.&lt;BR /&gt;This issue has been raised recently and tRESTClient will allow disabling the chunked encoding in the coming ESB Studio release&lt;BR /&gt;HTH, Sergey&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Hi, 
&lt;BR /&gt;I'm able to do the same request with tRest component but why not with tRestClient? 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;HTTPUrlConnection starting using the chunked encoding which does not support Content-Length&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;I also tried by sending the payload with out Content-Length header but I got the same exception 
&lt;BR /&gt;is there any workaround for this exception with tRestClient?</description>
      <pubDate>Thu, 11 Sep 2014 06:19:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352944#M119232</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2014-09-11T06:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352945#M119233</link>
      <description>Hi&amp;nbsp; 
&lt;BR /&gt;As sberyozkin 
&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;said, there was a issue on the tRestClient component right now, this issue will be fixed in the next release, it will allow disabling the cunhked encoding. 
&lt;BR /&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 11 Sep 2014 07:19:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352945#M119233</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-11T07:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352946#M119234</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hi&amp;nbsp;&lt;BR /&gt;As sberyozkin&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;said, there was a issue on the tRestClient component right now, this issue will be fixed in the next release, it will allow disabling the cunhked encoding.&lt;BR /&gt;&lt;BR /&gt;Best regards&lt;BR /&gt;Shong&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Hi Shong, 
&lt;BR /&gt;Thanks for your reply. 
&lt;BR /&gt;Do we have any other way to get the error code and error message with the post request other than tRest and tRestClient?</description>
      <pubDate>Thu, 11 Sep 2014 07:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352946#M119234</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2014-09-11T07:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352947#M119235</link>
      <description>&lt;PRE&gt;Do we have any other way to get the error code and error message with the post request other than tRest and tRestClient?&lt;/PRE&gt; 
&lt;BR /&gt;Sorry, I don't understand your question, can you please explain it with more details? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 12 Sep 2014 08:23:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352947#M119235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-12T08:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352948#M119236</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&lt;PRE&gt;Do we have any other way to get the error code and error message with the post request other than tRest and tRestClient?&lt;/PRE&gt;&lt;BR /&gt;Sorry, I don't understand your question, can you please explain it with more details?&lt;BR /&gt;Best regards&lt;BR /&gt;Shong&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Hi Shong, 
&lt;BR /&gt;If I use the tRestClient component it is returning the error code and error message details but it is throwing me the 
&lt;B&gt;411 Length Required&lt;/B&gt; exception because of chunked encoding. 
&lt;BR /&gt;Do we have any other component to handle restful requests ,which will provide me the error code and error message details like tRestClient?.</description>
      <pubDate>Fri, 12 Sep 2014 09:11:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352948#M119236</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2014-09-12T09:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352949#M119237</link>
      <description>Hi All, 
&lt;BR /&gt;I resolved the issue with tRestClient by installing the latest version of Talend Open Studio :5.6.0 M4 (test version ) and updated the component accordingly in my previous version. 
&lt;BR /&gt;In new component there is an option called : 
&lt;B&gt;Disable chunked encoding&lt;/B&gt; and we need to check this option as shown like below. 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt;</description>
      <pubDate>Mon, 15 Sep 2014 15:00:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352949#M119237</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2014-09-15T15:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352950#M119238</link>
      <description>&lt;P&gt;I do have Talend Cloud Real-time big data plateform 7.3.1, and the option &lt;B&gt;Disable chunked encoding&lt;/B&gt; in the tRestClient. But while having this option set (no chunked encoding) I still have the HTTP 411 Length Required error ...&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 14:44:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352950#M119238</guid>
      <dc:creator>hamdi_bourbia</dc:creator>
      <dc:date>2021-10-01T14:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352951#M119239</link>
      <description>&lt;P&gt;I am also getting same in talend 7.3.1  do any one find any solutio to this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTTP Error 411. The request must be chunked or have a content length.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000QCSHwAAP.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/137148i146B51D365AA7C35/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000QCSHwAAP.png" alt="0695b00000QCSHwAAP.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ashish&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 08:05:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352951#M119239</guid>
      <dc:creator>aksharma</dc:creator>
      <dc:date>2022-04-06T08:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352952#M119240</link>
      <description>&lt;P&gt;Im facing same issue. Is there any resolution for this.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 06:27:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2352952#M119240</guid>
      <dc:creator>ChaitraCP</dc:creator>
      <dc:date>2022-08-16T06:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] 411 Length Required Exception in tRestClient Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2458771#M140731</link>
      <description>&lt;P&gt;I am facing same issue. Is there any work around to avoid content length error? It is throwing content length must be specified.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 13:35:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-411-Length-Required-Exception-in-tRestClient-Component/m-p/2458771#M140731</guid>
      <dc:creator>S1660598179</dc:creator>
      <dc:date>2024-06-03T13:35:00Z</dc:date>
    </item>
  </channel>
</rss>

