<?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: Dynamic WSDL address in tESBConsumer in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206947#M6797</link>
    <description>Hi shong, 
&lt;BR /&gt;I have followed your steps but in the configuration of the wsdl I can't get the ports and operations because it cannot check the wsdl... how can I put this context.url in the tESBConsumer? 
&lt;BR /&gt;Please see the attached images. 
&lt;BR /&gt;regards. 
&lt;BR /&gt;Felipe 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hi Jackie &lt;BR /&gt;I tested and found that it do not allow to contains double quote in the WSDL url, if I set the WSDL url and endpoint with a single context variables, it works. Before call the webservice, you can use a tJava component to initialize context variables. Please see my screenshots.&lt;BR /&gt;code on tJava:&lt;BR /&gt;&lt;PRE&gt;context.url="http://"+context.host+"/services/"+context.env_name+"?WSDL";&lt;BR /&gt;context.endpoint="http://"+context.host+"/services/"+context.env_name;&lt;/PRE&gt;&lt;BR /&gt;Shong&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCST.gif"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158241iBF7B73AB3BDE57C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCST.gif" alt="0683p000009MCST.gif" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCS6.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/147269iD415D2B36B443DA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCS6.jpg" alt="0683p000009MCS6.jpg" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCUn.gif"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155204i478D48180C267C44/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCUn.gif" alt="0683p000009MCUn.gif" /&gt;&lt;/span&gt;</description>
    <pubDate>Fri, 14 Feb 2014 12:47:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-02-14T12:47:36Z</dc:date>
    <item>
      <title>Dynamic WSDL address in tESBConsumer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206944#M6794</link>
      <description>Is it possible to use a context variable as part of the WSDL location name when configuring the tESBConsumer component?  I'm consuming a PeopleSoft webservice and our PeopleSoft server and environment are part of the WSDL file path.  So, for example, the WSDL for our PeopleSoft Dev environment is:&lt;BR /&gt;"&lt;A href="http://xxxxxxxxx.city.kingston.on.ca:11080/PSIGW/PeopleSoftServiceListeningConnector/FSDEV/JOURNAL_LOAD_TEMPLATE.1.wsdl" target="_blank" rel="nofollow noopener noreferrer"&gt;http://xxxxxxxxx.city.kingston.on.ca:11080/PSIGW/PeopleSoftServiceListeningConnector/FSDEV/JOURNAL_LOAD_TEMPLATE.1.wsdl&lt;/A&gt;"&lt;BR /&gt;And the WSDL for consuming this same service from the PeopleSost UAT environment would be:&lt;BR /&gt;"&lt;A href="http://yyyyyyyyy.city.kingston.on.ca:11080/PSIGW/PeopleSoftServiceListeningConnector/FSUAT/JOURNAL_LOAD_TEMPLATE.1.wsdl" target="_blank" rel="nofollow noopener noreferrer"&gt;http://yyyyyyyyy.city.kingston.on.ca:11080/PSIGW/PeopleSoftServiceListeningConnector/FSUAT/JOURNAL_LOAD_TEMPLATE.1.wsdl&lt;/A&gt;"&lt;BR /&gt;I was hoping to be able to use context variable to set the WSDL as the following:&lt;BR /&gt;"http://" + context.server_name + "/PSIGW/PeopleSoftServiceListeningConnector/" + context.env_name + "/JOURNAL_LOAD_TEMPLATE.1.wsdl"&lt;BR /&gt;But this doesn't seem to work.  Am I doing something wrong?  Is there another way to achieve this result?&lt;BR /&gt;Thanks!&lt;BR /&gt;Jackie</description>
      <pubDate>Sat, 16 Nov 2024 11:47:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206944#M6794</guid>
      <dc:creator>jmceachern</dc:creator>
      <dc:date>2024-11-16T11:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic WSDL address in tESBConsumer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206945#M6795</link>
      <description>Hi Jackie 
&lt;BR /&gt;I tested and found that it do not allow to contains double quote in the WSDL url, if I set the WSDL url and endpoint with a single context variables, it works. Before call the webservice, you can use a tJava component to initialize context variables. Please see my screenshots. 
&lt;BR /&gt;code on tJava: 
&lt;BR /&gt; 
&lt;PRE&gt;context.url="http://"+context.host+"/services/"+context.env_name+"?WSDL";&lt;BR /&gt;context.endpoint="http://"+context.host+"/services/"+context.env_name;&lt;/PRE&gt; 
&lt;BR /&gt;Shong 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCT2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/152927i1D43C5AB9EB951CF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCT2.png" alt="0683p000009MCT2.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCUU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/152375i1673D8CAFD13C701/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCUU.png" alt="0683p000009MCUU.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 07 Jan 2014 03:56:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206945#M6795</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-07T03:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic WSDL address in tESBConsumer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206946#M6796</link>
      <description>I will try this.  Thanks so much!</description>
      <pubDate>Tue, 07 Jan 2014 16:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206946#M6796</guid>
      <dc:creator>jmceachern</dc:creator>
      <dc:date>2014-01-07T16:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic WSDL address in tESBConsumer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206947#M6797</link>
      <description>Hi shong, 
&lt;BR /&gt;I have followed your steps but in the configuration of the wsdl I can't get the ports and operations because it cannot check the wsdl... how can I put this context.url in the tESBConsumer? 
&lt;BR /&gt;Please see the attached images. 
&lt;BR /&gt;regards. 
&lt;BR /&gt;Felipe 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hi Jackie &lt;BR /&gt;I tested and found that it do not allow to contains double quote in the WSDL url, if I set the WSDL url and endpoint with a single context variables, it works. Before call the webservice, you can use a tJava component to initialize context variables. Please see my screenshots.&lt;BR /&gt;code on tJava:&lt;BR /&gt;&lt;PRE&gt;context.url="http://"+context.host+"/services/"+context.env_name+"?WSDL";&lt;BR /&gt;context.endpoint="http://"+context.host+"/services/"+context.env_name;&lt;/PRE&gt;&lt;BR /&gt;Shong&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCST.gif"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158241iBF7B73AB3BDE57C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCST.gif" alt="0683p000009MCST.gif" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCS6.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/147269iD415D2B36B443DA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCS6.jpg" alt="0683p000009MCS6.jpg" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCUn.gif"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155204i478D48180C267C44/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCUn.gif" alt="0683p000009MCUn.gif" /&gt;&lt;/span&gt;</description>
      <pubDate>Fri, 14 Feb 2014 12:47:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-WSDL-address-in-tESBConsumer/m-p/2206947#M6797</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-14T12:47:36Z</dc:date>
    </item>
  </channel>
</rss>

