<?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 Qlik sentiment &amp; text analysis connector error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlik-sentiment-text-analysis-connector-error/m-p/1335125#M828774</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using Qlik sense sentiment analysis connector. whenever I am passing the data .this error is shown.&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;Error: Invalid URI: The Uri string is too long&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/169250_Capture.PNG" style="height: 160px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Qlik sentiment &amp; text analysis connector error</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-sentiment-text-analysis-connector-error/m-p/1335125#M828774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using Qlik sense sentiment analysis connector. whenever I am passing the data .this error is shown.&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;Error: Invalid URI: The Uri string is too long&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/169250_Capture.PNG" style="height: 160px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-sentiment-text-analysis-connector-error/m-p/1335125#M828774</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sentiment &amp; text analysis connector error</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-sentiment-text-analysis-connector-error/m-p/1335126#M828775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;H4&gt;Text not already URL encoded&lt;/H4&gt;&lt;P&gt;If you are using text data from a source which is not already URL encoded you will need a script similar to the following to URL encode the text before sending it to the sentiment analyzer.&lt;/P&gt;&lt;P class="code"&gt;Sub urlEncode(str)&lt;/P&gt;&lt;P class="code"&gt;&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '%', '%25'); // should be first&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '#', '%23');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, ' ', '%20');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '$', '%24');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '&amp;amp;', '%26');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '+', '%2B');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, ',', '%2C');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '/', '%2F');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '\', '%5C');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, ':', '%3A');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, ';', '%3B');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '=', '%3D');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '?', '%3F');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '@', '%40');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '[', '%5B');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, ']', '%5D');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '&amp;gt;', '%3E');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, '&amp;lt;', '%3C');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, chr(10), '%0A'); // Line feed.&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let str=replace(str, chr(39), '%27'); // 39 Apostrophe&lt;/P&gt;&lt;P class="code"&gt;&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; call=str;&lt;/P&gt;&lt;P class="code"&gt;&lt;/P&gt;&lt;P class="code"&gt;End sub&lt;/P&gt;&lt;P class="code"&gt;&lt;/P&gt;&lt;P class="code"&gt;LET noRows = NoOfRows('Timeline');&lt;/P&gt;&lt;P class="code"&gt;&lt;/P&gt;&lt;P class="code"&gt;for i=0 to $(noRows)-1&lt;/P&gt;&lt;P class="code"&gt;&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let text = peek('text', $(i), 'Timeline');&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; let textEncoded = text;&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; call urlEncode(textEncoded);&lt;/P&gt;&lt;P class="code"&gt;&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; Sentiment:&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; LOAD&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; '$(text)' as text, // Use this if you want to link your table on the text&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; status as sentiment_status,&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; score as sentiment_score&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; FROM&lt;/P&gt;&lt;P class="code"&gt;&lt;SPAN&gt;&amp;nbsp; [&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://localhost:5555/data?ConnectorID=TextAnalyserConnector&amp;amp;table=Sentiment_Sentiment140&amp;amp;text=$(textEncoded" rel="nofollow" target="_blank"&gt;http://localhost:5555/data?ConnectorID=TextAnalyserConnector&amp;amp;table=Sentiment_Sentiment140&amp;amp;text=$(textEncoded&lt;/A&gt;&lt;SPAN&gt;)]&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="code"&gt;&amp;nbsp; (html, utf8, embedded labels, table is @1);&lt;/P&gt;&lt;P class="code"&gt;next&lt;/P&gt;&lt;P class="note"&gt; URL encoding should be done using UTF-8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2017 16:56:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-sentiment-text-analysis-connector-error/m-p/1335126#M828775</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2017-07-06T16:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sentiment &amp; text analysis connector error</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-sentiment-text-analysis-connector-error/m-p/1335127#M828776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/2.0/Connectors/Qlik-Sentiment-Text-Analytics-Connector.htm" title="http://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/2.0/Connectors/Qlik-Sentiment-Text-Analytics-Connector.htm"&gt;http://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/2.0/Connectors/Qlik-Sentiment-Text-Analytics-Connector.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2017 16:56:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-sentiment-text-analysis-connector-error/m-p/1335127#M828776</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2017-07-06T16:56:56Z</dc:date>
    </item>
  </channel>
</rss>

