<?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: Using Web Services in Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282277#M56550</link>
    <description>Hi Shong, 
&lt;BR /&gt;Yes, I have tried the tWebService component. 
&lt;BR /&gt;The component does present my complex types in the input and output mappings section (although it insists on presenting my type as an array?) 
&lt;BR /&gt;Ideally, I'd like to map my complex type to an "instance" of the type, if that makes sense. 
&lt;BR /&gt;I have emailed you directly a link to our WSDL. 
&lt;BR /&gt;Kind Regards, 
&lt;BR /&gt;D.</description>
    <pubDate>Wed, 23 Jan 2013 22:19:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-01-23T22:19:56Z</dc:date>
    <item>
      <title>Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282271#M56544</link>
      <description>Hi, 
&lt;BR /&gt;I am evaluating Talend on behalf of a client. 
&lt;BR /&gt;I have a scenario where I need to call multiple web services. The first web service call returns a security token (a string value) - All subsequent web service calls use this security token (passed as a parameter). 
&lt;BR /&gt;I cannot figure out how to use this security token in the subsequent calls. Do I need to assign this value to a global variable, then merge this variable into the flow?? 
&lt;BR /&gt;Also, most of my web service calls require a complex type as an input. Talend doesn't seem to expose complex types from my wsdl as schemas i can use. Is there a trick to do this? 
&lt;BR /&gt;Regards, 
&lt;BR /&gt;D.</description>
      <pubDate>Mon, 21 Jan 2013 23:00:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282271#M56544</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-21T23:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282272#M56545</link>
      <description>Hi
&lt;BR /&gt;I suggest you to learn 
&lt;A href="https://help.talend.com/search/all?query=tWebService&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;tWebService&lt;/A&gt;component, the job looks like:
&lt;BR /&gt;tWebservice_1--main--tWebservice_2--tLogRow
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 22 Jan 2013 06:35:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282272#M56545</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-22T06:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282273#M56546</link>
      <description>Thanks for your reply Shong. 
&lt;BR /&gt;I dont have a problem understanding how to use the output from one service call as the input to another! 
&lt;BR /&gt;My need is more specific where the result from the first web service call is used in the input of every subsequent web service call 
&lt;BR /&gt;e.g. 
&lt;BR /&gt;t_Webservice_1--main--tSetGlovalVar_1 
&lt;BR /&gt;But further down the processing chain, when i want to do this.. 
&lt;BR /&gt;t_Webservice_2--main--tLogRow 
&lt;BR /&gt;How do i include the global variable in the input mapping for the second web service call? 
&lt;BR /&gt;Regards, 
&lt;BR /&gt;D.</description>
      <pubDate>Tue, 22 Jan 2013 22:22:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282273#M56546</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-22T22:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282274#M56547</link>
      <description>Hi 
&lt;BR /&gt;You can use tFixedFlowInput to generate the data flow and pass it to t_Webservice_2 as input parameters. for example: 
&lt;BR /&gt;t_Webservice_1--main--tSetGlovalVar_1 
&lt;BR /&gt; | 
&lt;BR /&gt;onsubjobok 
&lt;BR /&gt; | 
&lt;BR /&gt;tFixedFlowInput--main--t_Webservice_2--main--tLogRow 
&lt;BR /&gt;on tFixedFlowInput, define the columns which you need to pass them to twebservice_2 as input paramter on the schema, and set its value like: 
&lt;BR /&gt;column:value 
&lt;BR /&gt;id 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt;Integer)globalMap.get("id_key") 
&lt;BR /&gt;//id_key is a key of a global variable defined on tSetGlovalVar_1. 
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 23 Jan 2013 01:17:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282274#M56547</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-23T01:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282275#M56548</link>
      <description>Thanks Shong, 
&lt;BR /&gt;That makes sense. 
&lt;BR /&gt;I am trying to understand if Talend can import complex types from a WSDL and create schemas from these types? 
&lt;BR /&gt;The closest I have come to correctly consuming my service is using tWebServiceInput and using the advanced features to generate client stubs - then, mapping the inputs and outputs in the code window. 
&lt;BR /&gt;is this the only option for working with external complex types? 
&lt;BR /&gt;Regards. 
&lt;BR /&gt;D.</description>
      <pubDate>Wed, 23 Jan 2013 03:52:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282275#M56548</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-23T03:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282276#M56549</link>
      <description>Hi
&lt;BR /&gt;Have you tried tWebservice component for the complex types? Can you please show us an example of a WSDL?
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 23 Jan 2013 13:02:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282276#M56549</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-23T13:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282277#M56550</link>
      <description>Hi Shong, 
&lt;BR /&gt;Yes, I have tried the tWebService component. 
&lt;BR /&gt;The component does present my complex types in the input and output mappings section (although it insists on presenting my type as an array?) 
&lt;BR /&gt;Ideally, I'd like to map my complex type to an "instance" of the type, if that makes sense. 
&lt;BR /&gt;I have emailed you directly a link to our WSDL. 
&lt;BR /&gt;Kind Regards, 
&lt;BR /&gt;D.</description>
      <pubDate>Wed, 23 Jan 2013 22:19:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282277#M56550</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-23T22:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282278#M56551</link>
      <description>Hi Shong,
&lt;BR /&gt;Did you have a chance to look at my WSDL?
&lt;BR /&gt;D.</description>
      <pubDate>Mon, 28 Jan 2013 22:37:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282278#M56551</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-28T22:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Services in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282279#M56552</link>
      <description>Hi shong, david. 
&lt;BR /&gt;M new to talend and stuck in a sitiation. 
&lt;BR /&gt;I have a job in where i need to invoke a webservice. 
&lt;BR /&gt;and here i have the working wsdl url with me. 
&lt;BR /&gt;Can you suggest me the ways to do it. 
&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 09 Jul 2013 16:56:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Web-Services-in-Talend/m-p/2282279#M56552</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-09T16:56:52Z</dc:date>
    </item>
  </channel>
</rss>

