<?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: tRest Client  Query Parameter in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268525#M47061</link>
    <description>&lt;P&gt;This very much depends upon how the server is configured I think. Query params are essentially just params that look like this....&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;PRE&gt;https://myserver.com/resource-name?param1=value1&amp;amp;param2=value2&lt;/PRE&gt; 
&lt;P&gt;If your attempt has just actioned the first ID in your list, you may need to try in a couple of different ways. First of all, test your call using the syntax above and do not specify the query params in the query parameters box. So your URL would look like this (assuming the beginning of the url matches this "&lt;A href="https://myserver.com/resource-name" target="_blank" rel="nofollow noopener noreferrer"&gt;https://myserver.com/resource-name&lt;/A&gt;")....&lt;/P&gt; 
&lt;PRE&gt;https://myserver.com/resource-name?action=list&amp;amp;details=All&amp;amp;ids=91053,91056,91085,91091,91108&lt;/PRE&gt; 
&lt;P&gt;I suspect you will get the same result from the above as you did by using the Query Parameters box, but I may be wrong. The next thing to test is sending an "ids" param for each id. For example....&lt;/P&gt; 
&lt;PRE&gt;https://myserver.com/resource-name?action=list&amp;amp;details=All&amp;amp;ids=91053&amp;amp;ids=91056&amp;amp;ids=91085&amp;amp;ids=91091&amp;amp;ids=91108&lt;/PRE&gt; 
&lt;P&gt;If the above works, then you should be able to convert the above into the same thing but using the Query Parameters box in the component.&lt;/P&gt;</description>
    <pubDate>Thu, 15 Aug 2019 14:22:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-08-15T14:22:00Z</dc:date>
    <item>
      <title>tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268522#M47058</link>
      <description>&lt;P&gt;How to pass a Column value from a table in a tRestClient as Query Parameter?&lt;BR /&gt;This way I could get a different response based on each input row from the source.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2019 18:00:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268522#M47058</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-02T18:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268523#M47059</link>
      <description>&lt;P&gt;In the "Value" field of the "Query Parameters" box in your tRestClient, simply add your row.column name. For example, if your row is "row1" and your column is "myData", you would add.....&lt;/P&gt; 
&lt;PRE&gt;row1.myData&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Aug 2019 23:50:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268523#M47059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-02T23:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268524#M47060</link>
      <description>&lt;P&gt;On the same line, I'm trying to pass multiple values in a Query parameter as mentioned in the attached screenshot.&lt;BR /&gt;Although it doesn't throw error, I'm getting a Response only for one value (Like 91108) of the query parameter.&lt;/P&gt; 
&lt;P&gt;Is there any way to pass multiple values?&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MUL_QUERY_PARAM.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7bK.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134939iAC984CF3DED6061F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7bK.jpg" alt="0683p000009M7bK.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2019 23:31:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268524#M47060</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-14T23:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268525#M47061</link>
      <description>&lt;P&gt;This very much depends upon how the server is configured I think. Query params are essentially just params that look like this....&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;PRE&gt;https://myserver.com/resource-name?param1=value1&amp;amp;param2=value2&lt;/PRE&gt; 
&lt;P&gt;If your attempt has just actioned the first ID in your list, you may need to try in a couple of different ways. First of all, test your call using the syntax above and do not specify the query params in the query parameters box. So your URL would look like this (assuming the beginning of the url matches this "&lt;A href="https://myserver.com/resource-name" target="_blank" rel="nofollow noopener noreferrer"&gt;https://myserver.com/resource-name&lt;/A&gt;")....&lt;/P&gt; 
&lt;PRE&gt;https://myserver.com/resource-name?action=list&amp;amp;details=All&amp;amp;ids=91053,91056,91085,91091,91108&lt;/PRE&gt; 
&lt;P&gt;I suspect you will get the same result from the above as you did by using the Query Parameters box, but I may be wrong. The next thing to test is sending an "ids" param for each id. For example....&lt;/P&gt; 
&lt;PRE&gt;https://myserver.com/resource-name?action=list&amp;amp;details=All&amp;amp;ids=91053&amp;amp;ids=91056&amp;amp;ids=91085&amp;amp;ids=91091&amp;amp;ids=91108&lt;/PRE&gt; 
&lt;P&gt;If the above works, then you should be able to convert the above into the same thing but using the Query Parameters box in the component.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2019 14:22:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268525#M47061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-15T14:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268526#M47062</link>
      <description>&lt;P&gt;1. Option 1: As mentioned, I'm getting multiple responses when I use a different tool like Postman for API call&amp;nbsp;&lt;BR /&gt;?action=list&amp;amp;details=All&amp;amp;ids=91053, 91056.&lt;BR /&gt;But in Talend, I'm getting the last id response only (91056). Why is it different from other API calls?&lt;BR /&gt;2. Option 2 : I tried the same in Talend with different values in different parameter, but I still end up getting one response ( for id=91017)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="multiple ids.jpg" style="width: 693px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M6mc.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151099iD4F21AA40216514C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M6mc.jpg" alt="0683p000009M6mc.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2019 17:59:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268526#M47062</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-15T17:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268527#M47063</link>
      <description>&lt;P&gt;When you say multiple responses, do you mean multiple messages back or do you mean a single message with multiple records? If it is the second, then this might be bug. However, if it is the first, then you can recreate this by simply calling the tRestClient for each of the ids.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2019 18:26:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268527#M47063</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-15T18:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268528#M47064</link>
      <description>&lt;P&gt;Thanks, Rhall for your response.&lt;/P&gt; 
&lt;P&gt;Calling RestClient for every single ID is taking a very long time ( more than 10 hours for 1500 ids).&lt;BR /&gt;That's the reason why we are looking to have a single API call with multiple IDs as an alternative.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 18:48:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268528#M47064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-16T18:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268529#M47065</link>
      <description>&lt;P&gt;OK. But does the API return a single message with data for all of the IDs or does it return a different message for each ID? I'm trying to figure out why there is a difference in behaviour between&amp;nbsp; your other tool and Talend.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Also, have you tried using another REST component? Maybe the tRest component. You will not have the option of the Query Parameters box, but these can be set in the URL.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;It is quite difficult to debug issues with web services when you do not have access to them or the documentation. I suspect that you cannot offer access to the service, but maybe you can post a link to some documentation?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 20:17:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268529#M47065</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-16T20:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268530#M47066</link>
      <description>&lt;P&gt;Sorry to jump in here. &lt;SPAN&gt;Can it be that you are processing the output directly in e.g. a tExtractJSONField component after the tRESTClient component? In this case, only the last record in your response would be processed in case you have set the loop path incorrectly - this would explain why you always only get the last record.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;When you put a tLogRow component directly after the tRESTClient component, what does the output say (status, body, string)? Does the column "string" contain more than one record?&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Furthermore, you say that in Postman everything looks OK. Which settings do you choose when you are using Postman (Content Type, HTTP method). Can you please provide a screenshot of this as well?&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;In your initial request you indicate that you provide the values like this: "&lt;SPAN&gt;91053, 91056". I assume, you have tried to remove the spaces before the separators ("91053,91056"), correct?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 21:27:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268530#M47066</guid>
      <dc:creator>JR1</dc:creator>
      <dc:date>2019-08-18T21:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268531#M47067</link>
      <description>&lt;P&gt;Great call&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/00539000005GtJEAA0"&gt;@JR&lt;/A&gt;. I'd assumed that the output was being viewed using a tLogRow (as that is always how I work with services when building). I thought I had mentioned that, but I hadn't. Please feel free to jump in whenever and wherever &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 10:11:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268531#M47067</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-19T10:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268532#M47068</link>
      <description>&lt;P&gt;Thank you JR and RHall for your responses.&lt;BR /&gt;Yes,I could now get the response from TRestClient as multiple records and could pass multiple values using tJava from the table result.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Column "string" contains more than one record and I had to convert that as a Document type and set the loop element appropriately to get the result.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;But , I'm still not getting the output as expected to load into a table as I have nested/recursive loop and multiple loop XML structure like below:&lt;BR /&gt;&amp;lt;A_LIST&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;M_LIST&amp;gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;B&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ID&amp;gt;&amp;lt;![CDATA[828282]]&amp;gt;&amp;lt;/ID&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;URL&amp;gt;&amp;lt;![CDATA[xxxx]]&amp;gt;&amp;lt;/URL&amp;gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/B&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;B&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ID&amp;gt;&amp;lt;![CDATA[14141]&amp;gt;&amp;lt;/ID&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;URL&amp;gt;&amp;lt;![CDATA[xxxxxxx]]&amp;gt;&amp;lt;/URL&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/B&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/B_LIST&amp;gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;C_LIST&amp;gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;C&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ID&amp;gt;&amp;lt;![CDATA[989898]]&amp;gt;&amp;lt;/ID&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;URL&amp;gt;&amp;lt;![CDATA[xxxx]]&amp;gt;&amp;lt;/URL&amp;gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/C&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;C&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ID&amp;gt;&amp;lt;![CDATA[181818]&amp;gt;&amp;lt;/ID&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;URL&amp;gt;&amp;lt;![CDATA[xxxxxxx]]&amp;gt;&amp;lt;/URL&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/C&amp;gt; &lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/M_LIST&amp;gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;M_LIST&amp;gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/M_LIST&amp;gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;lt;A_LIST&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I got to know that tXML Map currently doesn't support nested/recursive loop and I had to use tHMap instead.&lt;BR /&gt;Any pointers on how to define the loop element in tHMap and process the XML data to table?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 19:32:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268532#M47068</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-19T19:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: tRest Client  Query Parameter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268533#M47069</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How did you write your URL to take in the parameters' values?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 01:44:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRest-Client-Query-Parameter/m-p/2268533#M47069</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-27T01:44:00Z</dc:date>
    </item>
  </channel>
</rss>

