<?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 Re: [resolved] Retrieves data from a table with tRESTRequest and tRESTResponse in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294560#M67427</link>
    <description>Shong, thank you for your reply, 
&lt;BR /&gt; 
&lt;BR /&gt;Please, can you show me the setting of tXMLMap in a picture as you done it for the tRESTRequest in your first response. It's will greatly help me. (I'm a new user of talend esb open studio) 
&lt;BR /&gt; 
&lt;BR /&gt;Best regards</description>
    <pubDate>Sat, 26 Sep 2015 21:39:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-09-26T21:39:02Z</dc:date>
    <item>
      <title>[resolved] Retrieves data from a table with tRESTRequest and tRESTResponse</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294556#M67423</link>
      <description>Hello everyone, 
&lt;BR /&gt;I would like to create a job that will allow me to extract data from a table based on the value of a parameter passed as input. 
&lt;BR /&gt;For example, I have a table "T_client" with the following fields: code_cli, nom_cli, pren_cli, and I would like to display the table data based on the value of code_cli that is input. 
&lt;BR /&gt;My problem is to be able to: 
&lt;BR /&gt;&amp;nbsp; - Write the query in the tOracleInput; 
&lt;BR /&gt;&amp;nbsp; - Set the component tRESTRequest at the "REST API Mapping"; 
&lt;BR /&gt;&amp;nbsp; - And test the job at the endpoint according code_cli that I have input. 
&lt;BR /&gt; 
&lt;BR /&gt;I Thank You in advance for your assistance will be greatly appreciated because I'm stuck.</description>
      <pubDate>Sat, 16 Nov 2024 11:02:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294556#M67423</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T11:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Retrieves data from a table with tRESTRequest and tRESTResponse</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294557#M67424</link>
      <description>Hi&amp;nbsp; 
&lt;BR /&gt;On tRestRequest, define a parameter as shown below: 
&lt;BR /&gt; 
&lt;A href="https://community.talend.com/legacyfs/online/674/1_20150925-0305.png" target="_blank"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MGaI.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/148466i27435EDAB58DB08C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MGaI.png" alt="0683p000009MGaI.png" /&gt;&lt;/span&gt; &lt;/A&gt; 
&lt;BR /&gt;Then, you are able to define a dynamic query on tOracleInput to select the data that is based on the input value of code_cli, eg; 
&lt;BR /&gt;"select code_cli, nom_cli,pren_cli from table where code_cli="+(Integer)globalMap.get("s.code_cli") 
&lt;BR /&gt; 
&lt;A href="https://community.talend.com/legacyfs/online/674/2_20150925-0308.png" target="_blank"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MGl4.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/147138i5461ECA0BC3B5E57/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MGl4.png" alt="0683p000009MGl4.png" /&gt;&lt;/span&gt; &lt;/A&gt; 
&lt;BR /&gt;Using a tRestClient to call the rest web service in a Talend job, and pass a value as input parameter. 
&lt;BR /&gt; 
&lt;A href="https://community.talend.com/legacyfs/online/674/3_20150925-0310.png" target="_blank"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MGl9.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134300i7CA7E547A819065E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MGl9.png" alt="0683p000009MGl9.png" /&gt;&lt;/span&gt; &lt;/A&gt; 
&lt;BR /&gt;Hope this gives you hints to finish your job.&amp;nbsp; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 25 Sep 2015 02:11:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294557#M67424</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-25T02:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Retrieves data from a table with tRESTRequest and tRESTResponse</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294558#M67425</link>
      <description>Shong, thank you for your reply
&lt;BR /&gt;
&lt;BR /&gt;I want to know how did you set the component tXMLMAP_1 and why did you use the POST method for extraction of data? because according to what I read is the GET method is used for extractions.
&lt;BR /&gt;
&lt;BR /&gt;Thank you to enlighten me.</description>
      <pubDate>Sat, 26 Sep 2015 00:49:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294558#M67425</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-26T00:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Retrieves data from a table with tRESTRequest and tRESTResponse</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294559#M67426</link>
      <description>Hi&amp;nbsp;
&lt;BR /&gt;tRestResponse returns a document, so I used a tXMLMap to build the document structure. About the HTTP verb, it is just a sample here, you can use the Get method.&amp;nbsp;
&lt;BR /&gt;
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Sat, 26 Sep 2015 01:55:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294559#M67426</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-26T01:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Retrieves data from a table with tRESTRequest and tRESTResponse</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294560#M67427</link>
      <description>Shong, thank you for your reply, 
&lt;BR /&gt; 
&lt;BR /&gt;Please, can you show me the setting of tXMLMap in a picture as you done it for the tRESTRequest in your first response. It's will greatly help me. (I'm a new user of talend esb open studio) 
&lt;BR /&gt; 
&lt;BR /&gt;Best regards</description>
      <pubDate>Sat, 26 Sep 2015 21:39:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Retrieves-data-from-a-table-with-tRESTRequest-and/m-p/2294560#M67427</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-26T21:39:02Z</dc:date>
    </item>
  </channel>
</rss>

