<?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: Passing Parameters to RESTRequest in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332791#M101635</link>
    <description>&lt;P&gt;Ah I see. Thanks Richard.&lt;/P&gt;</description>
    <pubDate>Fri, 18 May 2018 09:47:28 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-05-18T09:47:28Z</dc:date>
    <item>
      <title>Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332779#M101623</link>
      <description>&lt;P&gt;Hello&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am trying to develop a Job that exposes a rest end point and this end point tales in two parameters:&lt;/P&gt; 
&lt;OL&gt; 
 &lt;LI&gt;areaCode&lt;/LI&gt; 
 &lt;LI&gt;groupNumber&lt;/LI&gt; 
&lt;/OL&gt; 
&lt;P&gt;I want to use these parameters later on in the flow to restrict a SQL Statement.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have defined a '&lt;STRONG&gt;tRESTrequest&lt;/STRONG&gt;' and have added a API Mapping with a URI Pattern of&lt;STRONG&gt;&amp;nbsp;"/{areaCode}/{groupNumber}/"&lt;/STRONG&gt;. In the Output Flow I have defined the two parameters.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tRESTRequest1.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxgR.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146949i41157B7A7C670F1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxgR.png" alt="0683p000009LxgR.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tRESTRequest2.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxgH.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/149827iC8A06F7A0980622D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxgH.png" alt="0683p000009LxgH.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;When I execute this, I pass the two parameters&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="executing_rest.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxKG.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135005i5C3093E99143E976/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxKG.png" alt="0683p000009LxKG.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;However the two parameters are evaluated to null. I have put a Java component to debug the the Request Object and it confirms that they are null.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The tJavaRow Component code is:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;System.out.println("Area Code   : "+globalMap.get("groupCode.areaCode"));
System.out.println("Group Number: "+globalMap.get("groupCode.groupNumber"));

//The object with the key "restRequest" is a HashMap
java.util.Map&amp;lt;String, Object&amp;gt; myMap = ((java.util.Map&amp;lt;String, Object&amp;gt;)globalMap.get("restRequest"));

//Print out of what you are seeing already
System.out.println("MyMap = " +myMap.toString());

//Create an iterator over the keyset
java.util.Iterator&amp;lt;String&amp;gt; it = myMap.keySet().iterator();

//Iterate over the keyset and print out the keys
while(it.hasNext()){
	System.out.println(it.next());
}

//Retrieve the PARAMS HashMap
java.util.Map&amp;lt;String, Object&amp;gt; myParams = ((java.util.Map&amp;lt;String, Object&amp;gt;)myMap.get("PARAMS"));

//Create an Iterator for the PARAMS HashMap
java.util.Iterator&amp;lt;String&amp;gt; it2 = myParams.keySet().iterator();

//Iterate over the PARAMS HasMap
while(it2.hasNext()){
	System.out.println(it2.next());
}&lt;/PRE&gt; 
&lt;P&gt;The output is:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="executing_rest2.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxYX.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/150302iDB86F2F6D4E9F59B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxYX.png" alt="0683p000009LxYX.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Am I missing some config ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Any Ideas&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Patrice&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 08:15:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332779#M101623</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T08:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332780#M101624</link>
      <description>&lt;P&gt;The AreaCode and GroupNumber are not stored in the globalMap. They are columns in the row from your tRESTRequest component.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I assume you are using&amp;nbsp;globalMap.get("groupCode.areaCode")) and&amp;nbsp;globalMap.get("groupCode.groupNumber")) in your query which is returning nothing. You can fix this by adding the following code to the very top of your tJavaRow....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;globalMap.put("groupCode.areaCode",groupCode.areaCode);&lt;BR /&gt;globalMap.put("groupCode.groupNumber",groupCode.groupNumber);&lt;/PRE&gt; 
&lt;P&gt;Of course, a better way to resolve this is to remove the tJavaRow and use the globalMap variables automatically created by the tFlowToIterate. They will have the keys.....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;"row3.areaCode"&lt;BR /&gt;"row3.groupNumber"&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 14:39:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332780#M101624</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T14:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332781#M101625</link>
      <description>&lt;P&gt;Thanks Richard.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;That is exactly how I had it originally. I only added the tJavaRow in order to debug the inbound parameters.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;So I now deactivate the Java Component and rewire the flow...&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tRESTRequest3.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lxig.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/136189iE72E101E57E6E30B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lxig.png" alt="0683p000009Lxig.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;So when I run the flow and pass :&amp;nbsp;&lt;STRONG&gt;http://localhost:8088/walkDetails/ES/50/&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;As you can see the SQLInput component returns 0 rows..&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The SQL Statement in the 'GetWalkDetails_GroupCode' component looks like this:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;"SELECT WalkDetails.WalkID,
		WalkDetails.D_grade,
		WalkDetails.D_strand,
		WalkDetails.D_event,
		WalkDetails.D_festival,
		WalkDetails.D_restriction,
		WalkDetails.Title,
		WalkDetails.Summary,
		WalkDetails.Group_Code,
		WalkDetails.WalkDescription,
		WalkDetails.Date,
		WalkDetails.Distance_KM,
		WalkDetails.Distance_Miles,
		WalkDetails.Grade_Local,
		WalkDetails.Linear_Ind,
		WalkDetails.Time,
		WalkDetails.GridRef,
		WalkDetails.Easting,
		WalkDetails.Northing,
		WalkDetails.Latitude,
		WalkDetails.Longitude,
		WalkDetails.Postcode,
		WalkDetails.StartingPointDescription,
		WalkDetails.Display_Ind,
		WalkDetails.Postcode_Latitude,
		WalkDetails.Postcode_Logitude,
		WalkDetails.CreationSource,
		WalkDetails.CreationDate,
		WalkDetails.MaintenanceSource,
		WalkDetails.MaintenanceDate
FROM	WalkDetails "+
"WHERE WalkDetails.Group_Code = '"+globalMap.get("groupCode.areaCode")+globalMap.get("groupCode.groupNumber")+"'"&lt;/PRE&gt; 
&lt;P&gt;This should return some rows, because if I were to change the SQL and hard code the values that I pass via the URL, the SQL returns rows&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;		WalkDetails.MaintenanceSource,
		WalkDetails.MaintenanceDate
FROM	WalkDetails "+
"WHERE WalkDetails.Group_Code = 'ES50'"&lt;/PRE&gt; 
&lt;P&gt;and run the flow...&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="executing_rest3.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxSN.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/149679i3D56E979FBB0FEB1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxSN.png" alt="0683p000009LxSN.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Let me know&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks for your help so far...&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 15:00:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332781#M101625</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T15:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332782#M101626</link>
      <description>&lt;P&gt;Also I have tried, casting the globalMap return object to String before concatenating it...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"WHERE WalkDetails.Group_Code = '"+((String)globalMap.get("groupCode.areaCode"))+((String)globalMap.get("groupCode.groupNumber"))+"'"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;this also did not work....&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 15:04:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332782#M101626</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T15:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332783#M101627</link>
      <description>&lt;P&gt;Have you tried printing....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;((String)globalMap.get("groupCode.areaCode"))+((String)globalMap.get("groupCode.groupNumber"))&lt;/PRE&gt;
&lt;P&gt;...to the System.out? Are you SURE it will produce a value that will return records?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 15:24:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332783#M101627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T15:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332784#M101628</link>
      <description>Hi, There was an option to provide query params in the component API mapping.
&lt;BR /&gt;look in component documentation “query“
&lt;BR /&gt;And add the the 2 fields you are looking for in the schema as comment col (query)
&lt;BR /&gt;</description>
      <pubDate>Thu, 17 May 2018 15:31:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332784#M101628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T15:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332785#M101629</link>
      <description>&lt;P&gt;Okay so I have simplified it and just add one parameter&amp;nbsp; and just for a minute lets forget the SQL...All I want is to pass a parameter and have the flow acknowledge the receipt of that parameter and print the value that I passed....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="one_param.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxIK.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/137864iF5C68A4386D80871/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxIK.png" alt="0683p000009LxIK.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="one_param2.PNG" style="width: 639px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxXA.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/143670i3BF8D0B06F547FB9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxXA.png" alt="0683p000009LxXA.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have added a Java Component to print the value of this parameter..&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="java.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxJu.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146507iAA4AEB6E7AC64B28/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxJu.png" alt="0683p000009LxJu.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;when I run this...&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="executing_rest4.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxP2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155120i66A4182E1B9EC832/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxP2.png" alt="0683p000009LxP2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;the output shows that the values in the parameters are null.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="executing_rest5.PNG" style="width: 785px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxhF.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139508iC8FE0AE0D522BD5A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxhF.png" alt="0683p000009LxhF.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 15:37:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332785#M101629</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T15:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332786#M101630</link>
      <description>&lt;P&gt;I have added the 'query' in the comment field in the schema...the screen shot shows it.&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 15:39:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332786#M101630</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T15:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332787#M101631</link>
      <description>Append to your url in browser ?param=value
&lt;BR /&gt;</description>
      <pubDate>Thu, 17 May 2018 15:45:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332787#M101631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T15:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332788#M101632</link>
      <description>&lt;P&gt;I tried these ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;http://localhost:8088/walkDetails?areaCode=ES50&lt;/P&gt;
&lt;P&gt;http://localhost:8088/walkDetails?param=ES50&lt;/P&gt;
&lt;P&gt;http://localhost:8088/walkDetails/areaCode=ES50&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;none of them picks up the value of 'ES50' and passes it to the REST...&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 15:52:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332788#M101632</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T15:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332789#M101633</link>
      <description>&lt;P&gt;Okay I think I resolved it, when referencing REST Inbound parameters, you do &lt;U&gt;&lt;STRONG&gt;NOT&lt;/STRONG&gt;&lt;/U&gt; need to use the 'globalMap.get'.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;You just refer directly...&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;FROM WalkDetails "+&lt;BR /&gt;"WHERE WalkDetails.Group_Code = '"+groupCode.areaCode+groupCode.groupNumber+"'"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;This worked...&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Anyway...I have another question.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I want to add a check after the SQL Query and count number of rows returned, if 0 then I want the REST Response to return a custom message saying "Now rows found etc"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Is this possible...&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 17:17:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332789#M101633</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-17T17:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332790#M101634</link>
      <description>&lt;P&gt;That is pretty much what I was trying to say with......"&lt;SPAN&gt;The AreaCode and GroupNumber are not stored in the globalMap. They are columns in the row from your tRESTRequest component."&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 May 2018 09:15:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332790#M101634</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-18T09:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Parameters to RESTRequest</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332791#M101635</link>
      <description>&lt;P&gt;Ah I see. Thanks Richard.&lt;/P&gt;</description>
      <pubDate>Fri, 18 May 2018 09:47:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Parameters-to-RESTRequest/m-p/2332791#M101635</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-18T09:47:28Z</dc:date>
    </item>
  </channel>
</rss>

