<?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 Web Service Call with basic HTTPS authentication in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283438#M57357</link>
    <description>How can I set up user id and pwd for a WS call that is using just Basic Authentication via HTTPS? I tried many different ways with no luck. The "Need Authentication?" doesn't work - I guess that feature uses SOAP auth, correct?
&lt;BR /&gt;I have tWebService working for WS that do not require authentication, and it works just fine. 
&lt;BR /&gt;Any help is greatly appreciated. 
&lt;BR /&gt;Thanks
&lt;BR /&gt;Cat</description>
    <pubDate>Sat, 16 Nov 2024 14:29:18 GMT</pubDate>
    <dc:creator>_AnonymousUser</dc:creator>
    <dc:date>2024-11-16T14:29:18Z</dc:date>
    <item>
      <title>Web Service Call with basic HTTPS authentication</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283438#M57357</link>
      <description>How can I set up user id and pwd for a WS call that is using just Basic Authentication via HTTPS? I tried many different ways with no luck. The "Need Authentication?" doesn't work - I guess that feature uses SOAP auth, correct?
&lt;BR /&gt;I have tWebService working for WS that do not require authentication, and it works just fine. 
&lt;BR /&gt;Any help is greatly appreciated. 
&lt;BR /&gt;Thanks
&lt;BR /&gt;Cat</description>
      <pubDate>Sat, 16 Nov 2024 14:29:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283438#M57357</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T14:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Web Service Call with basic HTTPS authentication</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283439#M57358</link>
      <description>Hi
&lt;BR /&gt;Which version of TOS did you use?
&lt;BR /&gt;Have a look to this 2401.
&lt;BR /&gt;Best regards
&lt;BR /&gt; shong</description>
      <pubDate>Fri, 28 Dec 2007 05:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283439#M57358</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-28T05:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Web Service Call with basic HTTPS authentication</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283440#M57359</link>
      <description>I am running 2.3.0 M2 (r7640-V2.3.0M2) - I have just downloaded it a few days ago. I did exactly what is on the bug tracker description (using Need Authentication and passing user id and password). However, I still get 401 - because the authentication of the WS is not happening via SOAP, but rather the resource is being protected via web application security (on the web.xml). I can't change the WS, since it is a third party application.
&lt;BR /&gt;
&lt;BR /&gt;Thanks
&lt;BR /&gt;Cat</description>
      <pubDate>Fri, 28 Dec 2007 20:58:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283440#M57359</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2007-12-28T20:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Web Service Call with basic HTTPS authentication</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283441#M57360</link>
      <description>Hi 
&lt;BR /&gt;First, make sure you get the correct user id and password. Second, tWebServiceInput component currently only support the soap authentication. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
      <pubDate>Sat, 29 Dec 2007 06:16:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283441#M57360</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-29T06:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Web Service Call with basic HTTPS authentication</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283442#M57361</link>
      <description>Not too sure if this helps but you can use the following piece of code in the advanced section of the WebServiceInput component to use basic auth.
&lt;BR /&gt;routines.StagingServiceLocator serviceLocator = new routines.StagingServiceLocator();
&lt;BR /&gt; 
&lt;BR /&gt; serviceLocator.setStagingServiceSoapEndpointAddress(context.notify_webservice_url);
&lt;BR /&gt; routines.StagingServiceSoap_PortType stagingSoap = serviceLocator.getStagingServiceSoap();
&lt;BR /&gt; ((javax.xml.rpc.Stub) stagingSoap)._setProperty(javax.xml.rpc.Stub.USERNAME_PROPERTY, context.notify_username);
&lt;BR /&gt; ((javax.xml.rpc.Stub) stagingSoap)._setProperty(javax.xml.rpc.Stub.PASSWORD_PROPERTY, context.notify_password);</description>
      <pubDate>Tue, 28 Apr 2009 02:06:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283442#M57361</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-28T02:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Web Service Call with basic HTTPS authentication</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283443#M57362</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Not too sure if this helps but you can use the following piece of code in the advanced section of the WebServiceInput component to use basic auth.&lt;BR /&gt;routines.StagingServiceLocator serviceLocator = new routines.StagingServiceLocator();&lt;BR /&gt; &lt;BR /&gt; serviceLocator.setStagingServiceSoapEndpointAddress(context.notify_webservice_url);&lt;BR /&gt; routines.StagingServiceSoap_PortType stagingSoap = serviceLocator.getStagingServiceSoap();&lt;BR /&gt; ((javax.xml.rpc.Stub) stagingSoap)._setProperty(javax.xml.rpc.Stub.USERNAME_PROPERTY, context.notify_username);&lt;BR /&gt; ((javax.xml.rpc.Stub) stagingSoap)._setProperty(javax.xml.rpc.Stub.PASSWORD_PROPERTY, context.notify_password);&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Hello, 
&lt;BR /&gt;I'm new to Talend and authenticating to SOAP using Basic Auth is exactly what i need. 
&lt;BR /&gt;The above suggestion doesn't seem to work, i get this error: 
&lt;BR /&gt; 
&lt;A href="https://community.talend.com/legacyfs/online/membersTempo/259909/Voila_Capture_2015-02-02_06-54-05_am.jpg.jpg" target="_blank"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MBbo.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/145207iEDBFFB57690B00C8/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MBbo.jpg" alt="0683p000009MBbo.jpg" /&gt;&lt;/span&gt; &amp;nbsp;&lt;/A&gt; 
&lt;BR /&gt;Any help is very appreciated!</description>
      <pubDate>Mon, 02 Feb 2015 05:54:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Web-Service-Call-with-basic-HTTPS-authentication/m-p/2283443#M57362</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-02T05:54:44Z</dc:date>
    </item>
  </channel>
</rss>

