<?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: SOAP Logon Request in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/SOAP-Logon-Request/m-p/2265021#M44686</link>
    <description>And again Shong: Thanks a lot! tSOAP did the job perfecly!</description>
    <pubDate>Fri, 09 Jun 2017 19:11:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-06-09T19:11:09Z</dc:date>
    <item>
      <title>SOAP Logon Request</title>
      <link>https://community.qlik.com/t5/Talend-Studio/SOAP-Logon-Request/m-p/2265019#M44684</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I need to send a&amp;nbsp;logon request via talend in order to authenticate against a webservice. This is how the request&amp;nbsp;looks like:&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:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ccn2="http://&lt;EM&gt;provider&lt;/EM&gt;.framework.webservices/types" xmlns:tns="http://&lt;EM&gt;provider&lt;/EM&gt;.framework.webservices/Svc"&amp;gt;
  &amp;lt;soap:Body&amp;gt;
    &amp;lt;tns:LogonRequestMsg&amp;gt;
      &amp;lt;ccn2:Username&amp;gt;myUSER&amp;lt;/ccn2:Username&amp;gt;
      &amp;lt;ccn2: Password&amp;gt;myPW&amp;lt;/ccn2: Password&amp;gt;
      &amp;lt;ccn2:WebServiceType&amp;gt;myWebserviceType&amp;lt;/ccn2:WebServiceType&amp;gt;
    &amp;lt;/tns:LogonRequestMsg&amp;gt;
  &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;So how can I accomplish that in talend?&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I tried it via tWebService but that leads me to the following error message:&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;Exception in component tWebService_1
org.apache.cxf.binding.soap.SoapFault: 10950122|&lt;STRONG&gt;You have to enter a password that is not empty&lt;/STRONG&gt;.  - at utc [ 2017-06-08   14:20:56.2 ]
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.unmarshalFault(Soap11FaultInInterceptor.java:86)
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:52)
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:41)
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308)
	at org.apache.cxf.interceptor.AbstractFaultChainInitiatorObserver.onMessage(AbstractFaultChainInitiatorObserver.java:112)
	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:69)
	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:34)
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308)
[statistics] disconnected
	at org.apache.cxf.endpoint.ClientImpl.onMessage(ClientImpl.java:798)
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:1669)
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1550)
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1347)
	at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:56)
	at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:651)
	at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308)
	at org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:514)
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:423)
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:324)
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:277)
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:297)
	at org.talend.webservice.helper.ServiceInvokerHelper.invoke(ServiceInvokerHelper.java:197)
	at org.talend.webservice.helper.ServiceInvokerHelper.invoke(ServiceInvokerHelper.java:238)
	at provider_demo.extractproductdata_0_1.extractProductData.tFixedFlowInput_1Process(extractProductData.java:883)
	at provider_demo.extractproductdata_0_1.extractProductData.runJobInTOS(extractProductData.java:1279)
	at provider_demo.extractproductdata_0_1.extractProductData.main(extractProductData.java:1136)&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Ludx.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/143465iCC1992A57183E00F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Ludx.png" alt="0683p000009Ludx.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 372px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lubs.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154501iA602D644F6AE0F49/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lubs.png" alt="0683p000009Lubs.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 392px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LueC.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/143002iDBF62E8215CC4243/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LueC.png" alt="0683p000009LueC.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&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="image.png" style="width: 657px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LueM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/148048iB107ED89A9FB92A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LueM.png" alt="0683p000009LueM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 15:36:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/SOAP-Logon-Request/m-p/2265019#M44684</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-08T15:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: SOAP Logon Request</title>
      <link>https://community.qlik.com/t5/Talend-Studio/SOAP-Logon-Request/m-p/2265020#M44685</link>
      <description>Hi
&lt;BR /&gt;Try tSOAP component that allows you to fill out the body message, please refer to the scenario in the component documentation. 
&lt;BR /&gt;
&lt;BR /&gt;Regards
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 09 Jun 2017 11:29:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/SOAP-Logon-Request/m-p/2265020#M44685</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-09T11:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: SOAP Logon Request</title>
      <link>https://community.qlik.com/t5/Talend-Studio/SOAP-Logon-Request/m-p/2265021#M44686</link>
      <description>And again Shong: Thanks a lot! tSOAP did the job perfecly!</description>
      <pubDate>Fri, 09 Jun 2017 19:11:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/SOAP-Logon-Request/m-p/2265021#M44686</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-09T19:11:09Z</dc:date>
    </item>
  </channel>
</rss>

