<?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] tESBProviderRequest getting the soap header in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307295#M78747</link>
    <description>So finally there is way about how to extract SOAP headers.</description>
    <pubDate>Tue, 14 Jul 2015 01:35:54 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-07-14T01:35:54Z</dc:date>
    <item>
      <title>[resolved] tESBProviderRequest getting the soap header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307290#M78742</link>
      <description>Hello, &lt;BR /&gt;i created a web service with the TOS for ESB. In that service i defined some elements for the header part of a message.  But i've been unable to access these elements with help of the tESBProviderRequest component. In the payload object i have only access to the body part of a message.  &lt;BR /&gt;Is there any solution to access the header part of s soap message?&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;Best regards,&lt;BR /&gt;Ahti</description>
      <pubDate>Sat, 16 Nov 2024 11:41:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307290#M78742</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T11:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tESBProviderRequest getting the soap header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307291#M78743</link>
      <description>see jira issue: 
&lt;A href="https://jira.talendforge.org/browse/TESB-10545" target="_blank" rel="nofollow noopener noreferrer"&gt;TESB-10545&lt;/A&gt;, this feature have been available since v5.4.1, you can get the http header information by using the global variable defined on tESBProviderRequest component, for example: 
&lt;BR /&gt;((java.util.Map&amp;lt;String,java.util.List&amp;lt;String&amp;gt;&amp;gt;)globalMap.get("tESBProviderRequest_1_HEADERS_HTTP")) 
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 15 Apr 2014 11:12:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307291#M78743</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-15T11:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tESBProviderRequest getting the soap header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307292#M78744</link>
      <description>Hello Shong,
&lt;BR /&gt;first thanks for your replay! But i think there is same kind of misunderstanding, i want to read content of the SOAP header and not the HTTP header. 
&lt;BR /&gt;Here is an example Soap Message:
&lt;BR /&gt;&amp;lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://www.talend.org/service/"&amp;gt;
&lt;BR /&gt; &amp;lt;soapenv:Header&amp;gt;
&lt;BR /&gt; &amp;lt;ser:headPart/&amp;gt;
&lt;BR /&gt; &amp;lt;/soapenv:Header&amp;gt;
&lt;BR /&gt; &amp;lt;soapenv:Body&amp;gt;
&lt;BR /&gt; &amp;lt;ser:requestPart/&amp;gt;
&lt;BR /&gt; &amp;lt;/soapenv:Body&amp;gt;
&lt;BR /&gt;&amp;lt;/soapenv:Envelope&amp;gt;
&lt;BR /&gt;The goal is to get access to the content of the "soapenv:Header" element. From the tESBProviderRequest i get only the content from the "soapenv:Body" element. 
&lt;BR /&gt;Best regards,
&lt;BR /&gt;Ahti</description>
      <pubDate>Tue, 22 Apr 2014 15:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307292#M78744</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-22T15:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tESBProviderRequest getting the soap header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307293#M78745</link>
      <description>Hey,
&lt;BR /&gt;i found the solution. It's possible to get the SOAP header from the gobalMap like: 
&lt;BR /&gt;java.util.Collection&amp;lt;org.apache.cxf.headers.Header&amp;gt; soapHeaders = ((java.util.Collection&amp;lt;org.apache.cxf.headers.Header&amp;gt;) globalMap
&lt;BR /&gt; .get("tESBProviderRequest_1_HEADERS_SOAP"));
&lt;BR /&gt;Found it here: 
&lt;A href="https://jira.talendforge.org/browse/DOCT-2363" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/DOCT-2363&lt;/A&gt; 
&lt;BR /&gt;Ahti</description>
      <pubDate>Tue, 22 Apr 2014 15:43:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307293#M78745</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-22T15:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tESBProviderRequest getting the soap header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307294#M78746</link>
      <description>Cool, glad to see you get it to work and thanks for your feedback.
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 25 Apr 2014 08:59:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307294#M78746</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-25T08:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tESBProviderRequest getting the soap header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307295#M78747</link>
      <description>So finally there is way about how to extract SOAP headers.</description>
      <pubDate>Tue, 14 Jul 2015 01:35:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307295#M78747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-14T01:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tESBProviderRequest getting the soap header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307296#M78748</link>
      <description>&lt;P&gt;Why can you not just add a option to access the SOAP / HTTP header, especially the Set-Cookie field, for tSOAP component? How can i do that myself and make a pull request? Community managers, go go go, guide me and i'll add that support myself!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 15:48:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tESBProviderRequest-getting-the-soap-header/m-p/2307296#M78748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-13T15:48:32Z</dc:date>
    </item>
  </channel>
</rss>

