<?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 Problem with tSOAP with UsernameToken in Header in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Problem-with-tSOAP-with-UsernameToken-in-Header/m-p/2376423#M138602</link>
    <description>&lt;P&gt;Hi Community,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;i tried to figure out the problem by myself searching the web, but i did not find the right answer. Maybe you can help me.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am trying to request information from a SOAP interface by&amp;nbsp; using a simple tSOAP component. The tSOAP component is set-up as follows:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;ENDPOINT: "&lt;A href="http://advertiser-webservices.affili.net/V5/WSDLFactory/OrderManagement.wsdl" target="_blank" rel="nofollow noopener noreferrer"&gt;http://advertiser-webservices.affili.net/V5/WSDLFactory/OrderManagement.wsdl&lt;/A&gt;"&lt;/P&gt; 
&lt;P&gt;SOAP Action: "&lt;A href="http://affilinet.framework.esbfa/advertiserservices/ordermanagement/OrderManagementContract/GetOrders" target="_blank" rel="nofollow noopener noreferrer"&gt;http://affilinet.framework.esbfa/advertiserservices/ordermanagement/OrderManagementContract/GetOrders&lt;/A&gt;"&lt;/P&gt; 
&lt;P&gt;SOAP Message:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;"&amp;lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&amp;gt;
&amp;lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ns1=\"http://affilinet.framework.esbfa/advertiserservices/ordermanagement/messages\" xmlns:ns2=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\" xmlns:ns3=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd\"&amp;gt;
        &amp;lt;SOAP-ENV:Header&amp;gt;
                &amp;lt;ns2:Security SOAP-ENV:mustUnderstand=\"1\"&amp;gt;
                        &amp;lt;ns2:UsernameToken&amp;gt;
                                &amp;lt;ns2:Username&amp;gt;xxx&amp;lt;/ns2:Username&amp;gt;
                                &amp;lt;ns2:Password&amp;gt;xxx&amp;lt;/ns2:Password&amp;gt;
                                &amp;lt;ns3:Created&amp;gt;2018-06-12T11-52-52Z&amp;lt;/ns3:Created&amp;gt;
                        &amp;lt;/ns2:UsernameToken&amp;gt;
                &amp;lt;/ns2:Security&amp;gt;
        &amp;lt;/SOAP-ENV:Header&amp;gt;
        &amp;lt;SOAP-ENV:Body&amp;gt;
                &amp;lt;ns1:GetOrdersRequest&amp;gt;
                        &amp;lt;ns1:EndDate&amp;gt;2018-06-07T23:59:59&amp;lt;/ns1:EndDate&amp;gt;
                        &amp;lt;ns1:Page&amp;gt;1&amp;lt;/ns1:Page&amp;gt;
                        &amp;lt;ns1:PageSize&amp;gt;1000&amp;lt;/ns1:PageSize&amp;gt;
                        &amp;lt;ns1:ProgramId&amp;gt;xxx&amp;lt;/ns1:ProgramId&amp;gt;
                        &amp;lt;ns1:PublisherIds/&amp;gt;
                        &amp;lt;ns1:StartDate&amp;gt;2018-06-07T00:00:00&amp;lt;/ns1:StartDate&amp;gt;
                        &amp;lt;ns1:TransactionStatus&amp;gt;All&amp;lt;/ns1:TransactionStatus&amp;gt;
                        &amp;lt;ns1:ValuationType&amp;gt;RegistrationDate&amp;lt;/ns1:ValuationType&amp;gt;
                &amp;lt;/ns1:GetOrdersRequest&amp;gt;
        &amp;lt;/SOAP-ENV:Body&amp;gt;
&amp;lt;/SOAP-ENV:Envelope&amp;gt;
"&lt;/PRE&gt; 
&lt;P&gt;The endpoint, the action and the message as well work, as they are tested with a CURL script. The CreatedDate of the UsernameToken is set to the current datetime manually by me, to start of simple. I also tried setting it by currentDate, but this did not change anything.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;All i want to do, is run a tested set-up by a Talend component and i receive the following error:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;Jun 12, 2018 11:53:08 AM com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection post
SCHWERWIEGEND: SAAJ0008: Bad Response; Method Not Allowed
Exception in component tSOAP_1 (dc_affilinet)
com.sun.xml.messaging.saaj.SOAPExceptionImpl: java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:191)
	at org.talend.soap.SOAPUtil.invokeSOAP(SOAPUtil.java:147)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.tFixedFlowInput_1Process(dc_affilinet.java:1129)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.runJobInTOS(dc_affilinet.java:1543)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.main(dc_affilinet.java:1392)
Caused by: java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at java.security.AccessController.doPrivileged(Native Method)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:185)
	... 4 more
Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:368)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:214)
	... 6 more

CAUSE:

java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at java.security.AccessController.doPrivileged(Native Method)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:185)
	at org.talend.soap.SOAPUtil.invokeSOAP(SOAPUtil.java:147)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.tFixedFlowInput_1Process(dc_affilinet.java:1129)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.runJobInTOS(dc_affilinet.java:1543)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.main(dc_affilinet.java:1392)
Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:368)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:214)
	... 6 more

CAUSE:

java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at java.security.AccessController.doPrivileged(Native Method)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:185)
	at org.talend.soap.SOAPUtil.invokeSOAP(SOAPUtil.java:147)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.tFixedFlowInput_1Process(dc_affilinet.java:1129)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.runJobInTOS(dc_affilinet.java:1543)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.main(dc_affilinet.java:1392)
Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:368)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:214)
	... 6 more
[statistics] disconnected&lt;/PRE&gt; 
&lt;P&gt;Does anyone now how to address this error?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Kind regards,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Maurus&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jun 2018 11:02:40 GMT</pubDate>
    <dc:creator>MaurusBeck</dc:creator>
    <dc:date>2018-06-12T11:02:40Z</dc:date>
    <item>
      <title>Problem with tSOAP with UsernameToken in Header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Problem-with-tSOAP-with-UsernameToken-in-Header/m-p/2376423#M138602</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;i tried to figure out the problem by myself searching the web, but i did not find the right answer. Maybe you can help me.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am trying to request information from a SOAP interface by&amp;nbsp; using a simple tSOAP component. The tSOAP component is set-up as follows:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;ENDPOINT: "&lt;A href="http://advertiser-webservices.affili.net/V5/WSDLFactory/OrderManagement.wsdl" target="_blank" rel="nofollow noopener noreferrer"&gt;http://advertiser-webservices.affili.net/V5/WSDLFactory/OrderManagement.wsdl&lt;/A&gt;"&lt;/P&gt; 
&lt;P&gt;SOAP Action: "&lt;A href="http://affilinet.framework.esbfa/advertiserservices/ordermanagement/OrderManagementContract/GetOrders" target="_blank" rel="nofollow noopener noreferrer"&gt;http://affilinet.framework.esbfa/advertiserservices/ordermanagement/OrderManagementContract/GetOrders&lt;/A&gt;"&lt;/P&gt; 
&lt;P&gt;SOAP Message:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;"&amp;lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&amp;gt;
&amp;lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ns1=\"http://affilinet.framework.esbfa/advertiserservices/ordermanagement/messages\" xmlns:ns2=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\" xmlns:ns3=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd\"&amp;gt;
        &amp;lt;SOAP-ENV:Header&amp;gt;
                &amp;lt;ns2:Security SOAP-ENV:mustUnderstand=\"1\"&amp;gt;
                        &amp;lt;ns2:UsernameToken&amp;gt;
                                &amp;lt;ns2:Username&amp;gt;xxx&amp;lt;/ns2:Username&amp;gt;
                                &amp;lt;ns2:Password&amp;gt;xxx&amp;lt;/ns2:Password&amp;gt;
                                &amp;lt;ns3:Created&amp;gt;2018-06-12T11-52-52Z&amp;lt;/ns3:Created&amp;gt;
                        &amp;lt;/ns2:UsernameToken&amp;gt;
                &amp;lt;/ns2:Security&amp;gt;
        &amp;lt;/SOAP-ENV:Header&amp;gt;
        &amp;lt;SOAP-ENV:Body&amp;gt;
                &amp;lt;ns1:GetOrdersRequest&amp;gt;
                        &amp;lt;ns1:EndDate&amp;gt;2018-06-07T23:59:59&amp;lt;/ns1:EndDate&amp;gt;
                        &amp;lt;ns1:Page&amp;gt;1&amp;lt;/ns1:Page&amp;gt;
                        &amp;lt;ns1:PageSize&amp;gt;1000&amp;lt;/ns1:PageSize&amp;gt;
                        &amp;lt;ns1:ProgramId&amp;gt;xxx&amp;lt;/ns1:ProgramId&amp;gt;
                        &amp;lt;ns1:PublisherIds/&amp;gt;
                        &amp;lt;ns1:StartDate&amp;gt;2018-06-07T00:00:00&amp;lt;/ns1:StartDate&amp;gt;
                        &amp;lt;ns1:TransactionStatus&amp;gt;All&amp;lt;/ns1:TransactionStatus&amp;gt;
                        &amp;lt;ns1:ValuationType&amp;gt;RegistrationDate&amp;lt;/ns1:ValuationType&amp;gt;
                &amp;lt;/ns1:GetOrdersRequest&amp;gt;
        &amp;lt;/SOAP-ENV:Body&amp;gt;
&amp;lt;/SOAP-ENV:Envelope&amp;gt;
"&lt;/PRE&gt; 
&lt;P&gt;The endpoint, the action and the message as well work, as they are tested with a CURL script. The CreatedDate of the UsernameToken is set to the current datetime manually by me, to start of simple. I also tried setting it by currentDate, but this did not change anything.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;All i want to do, is run a tested set-up by a Talend component and i receive the following error:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;Jun 12, 2018 11:53:08 AM com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection post
SCHWERWIEGEND: SAAJ0008: Bad Response; Method Not Allowed
Exception in component tSOAP_1 (dc_affilinet)
com.sun.xml.messaging.saaj.SOAPExceptionImpl: java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:191)
	at org.talend.soap.SOAPUtil.invokeSOAP(SOAPUtil.java:147)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.tFixedFlowInput_1Process(dc_affilinet.java:1129)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.runJobInTOS(dc_affilinet.java:1543)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.main(dc_affilinet.java:1392)
Caused by: java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at java.security.AccessController.doPrivileged(Native Method)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:185)
	... 4 more
Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:368)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:214)
	... 6 more

CAUSE:

java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at java.security.AccessController.doPrivileged(Native Method)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:185)
	at org.talend.soap.SOAPUtil.invokeSOAP(SOAPUtil.java:147)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.tFixedFlowInput_1Process(dc_affilinet.java:1129)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.runJobInTOS(dc_affilinet.java:1543)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.main(dc_affilinet.java:1392)
Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:368)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:214)
	... 6 more

CAUSE:

java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at java.security.AccessController.doPrivileged(Native Method)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:185)
	at org.talend.soap.SOAPUtil.invokeSOAP(SOAPUtil.java:147)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.tFixedFlowInput_1Process(dc_affilinet.java:1129)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.runJobInTOS(dc_affilinet.java:1543)
	at udgsmartreport.dc_affilinet_0_1.dc_affilinet.main(dc_affilinet.java:1392)
Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (405Method Not Allowed
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:368)
	at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:214)
	... 6 more
[statistics] disconnected&lt;/PRE&gt; 
&lt;P&gt;Does anyone now how to address this error?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Kind regards,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Maurus&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jun 2018 11:02:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Problem-with-tSOAP-with-UsernameToken-in-Header/m-p/2376423#M138602</guid>
      <dc:creator>MaurusBeck</dc:creator>
      <dc:date>2018-06-12T11:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tSOAP with UsernameToken in Header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Problem-with-tSOAP-with-UsernameToken-in-Header/m-p/2376424#M138603</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Are you able to successfully request information from a SOAP interface through Soap UI?&lt;/P&gt;
&lt;P&gt;Screenshots of your component setting will be helpful for us to spot your problem.&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 13:22:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Problem-with-tSOAP-with-UsernameToken-in-Header/m-p/2376424#M138603</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-11T13:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tSOAP with UsernameToken in Header</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Problem-with-tSOAP-with-UsernameToken-in-Header/m-p/2376425#M138604</link>
      <description>&lt;P&gt;Hello MaurusBeck,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;did you solve that problem anyhow? I'm facing the same issue right now.&lt;/P&gt;&lt;P&gt;I'm trying it with this as a header (still in SOAPUI)&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;soapenv:Header&amp;gt; &lt;BR /&gt;  &amp;lt;wsse:Security soapenv:mustUnderstand="1"&amp;gt; &lt;BR /&gt;    &amp;lt;wsse:UsernameToken&amp;gt;&lt;BR /&gt;      &amp;lt;wsse:Username&amp;gt;xxxx-xxxxxx&amp;lt;/wsse:Username&amp;gt; &lt;BR /&gt;      &amp;lt;wsse:Password&amp;gt;xxxxxxxpasswordplaintextxxxxxx&amp;lt;/wsse:Password&amp;gt; &lt;BR /&gt;      &amp;lt;wsu:Created&amp;gt;2018-10-11T18-50-00Z&amp;lt;/wsu:Created&amp;gt; &lt;BR /&gt;    &amp;lt;/wsse:UsernameToken&amp;gt;&lt;BR /&gt;  &amp;lt;/wsse:Security&amp;gt;&lt;BR /&gt;&amp;lt;/soapenv:Header&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and this is my response:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;
&amp;lt;s:Body&amp;gt;
&amp;lt;s:Fault&amp;gt;
&amp;lt;faultcode xmlns:a="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"&amp;gt;a:InvalidSecurity&amp;lt;/faultcode&amp;gt;
&amp;lt;faultstring xml:lang="en-US"&amp;gt;An error occurred when verifying security for the message.&amp;lt;/faultstring&amp;gt;
&amp;lt;/s:Fault&amp;gt;
&amp;lt;/s:Body&amp;gt;
&amp;lt;/s:Envelope&amp;gt;&lt;/PRE&gt;&lt;P&gt;Whats wrong with my Header?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Oct 2018 18:32:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Problem-with-tSOAP-with-UsernameToken-in-Header/m-p/2376425#M138604</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-11T18:32:33Z</dc:date>
    </item>
  </channel>
</rss>

