<?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: Turn off SSL certificate verification in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267485#M46352</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attach the process...:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tLibraryLoad_1: I attach okhttp-3.11.0.jar&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;tLibraryLoad_2: I attach okio-1.15.0.jar&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;tJava_1:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;try {
	// Create a trust manager that does not validate certificate chains
	final TrustManager[] trustAllCerts = new TrustManager[] 
	{
        new X509TrustManager() 
        {
			@Override
		    public void checkClientTrusted(java.security.cert.X509Certificate[] chain, String 			authType) throws CertificateException 
		    {
			}

		    @Override
		    public void checkServerTrusted(java.security.cert.X509Certificate[] chain, String 			authType) throws CertificateException 
		    {
		    }

	        @Override
	        public java.security.cert.X509Certificate[] getAcceptedIssuers() 
	        {
		    	return new java.security.cert.X509Certificate[]{};
		    }
		 }
	};

	// Install the all-trusting trust manager
	final SSLContext sslContext = SSLContext.getInstance("SSL");
	sslContext.init(null, trustAllCerts, new java.security.SecureRandom());
	// Create an ssl socket factory with our all-trusting manager
	final SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory();

    OkHttpClient.Builder builder = new OkHttpClient.Builder();
    builder.sslSocketFactory(sslSocketFactory, (X509TrustManager)trustAllCerts[0]);
    builder.hostnameVerifier(new HostnameVerifier() 
    {
	    @Override
    	public boolean verify(String hostname, SSLSession session) 
	    {
			return true;
		}
	});

	OkHttpClient cliente = builder.build();

	Request request = new Request.Builder()
			.url("https://xxxxxxxx/security/auth/login?instance=yyyyyy")
			.get()
			.addHeader("client-id", "7ffd60e48b5")
			.addHeader("client-secret", "I5xJ1sJ2yY8cB4yP4bB0kU1vC4")
			.addHeader("authorization", "Basic ZnJhbmNpc2NvLmV4cG9zaXdvcmxkLmNvbTpNYXJjb3MyMDE0IXA=")
			.addHeader("language", "en")
			.addHeader("accept", "application/json")
			.build();
		
	Response response = cliente.newCall(request).execute();
	
	Headers headers = response.headers();
		Set&amp;lt;String&amp;gt; headersSet = headers.names();
		
		for (String headerAux : headersSet)
		{
			System.out.println(headerAux + " = " + headers.get(headerAux));
		}
		
		System.out.println(response);

} 
catch (Exception e) 
{
	throw new RuntimeException(e);
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tRESTClient_1:&lt;/P&gt;&lt;P&gt;Url:&amp;nbsp;"https://xxxxxxxx/"&lt;/P&gt;&lt;P&gt;Relative Path:&amp;nbsp;"portfolio/people/"&lt;/P&gt;&lt;P&gt;HTTP Method: GET&lt;/P&gt;&lt;P&gt;Use Authentication: BASIC with user and pwd filled.&lt;/P&gt;&lt;P&gt;Advanced headers:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;client-id="7ffd60e48b5"
client-secret = "I5xJ1sJ2yY8cB4yP4bB0kU1vC4"
authorization = "Basic ZnJhbmNpc2NvLmV4cG9zaXdvcmxkLmNvbTpNYXJjb3MyMDE0IXA="
language = "en"
accept ="application/json"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I execute the calls to the rest method in the tJava process, they work properly. But I get an error if the call is in the tRESTClient_1 component&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LuRE"&gt;error_talend.png&lt;/A&gt;</description>
    <pubDate>Thu, 03 Jan 2019 07:38:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-01-03T07:38:59Z</dc:date>
    <item>
      <title>Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267483#M46350</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anyway to disable SSL certificate validation in Talend (v6.4.1)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In a eclipse Java Project, if I add the next code, it works properly:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;import javax.net.ssl.TrustManager;&lt;BR /&gt;&lt;BR /&gt;import okhttp3.Headers;&lt;BR /&gt;import okhttp3.OkHttpClient;&lt;BR /&gt;import okhttp3.Request;&lt;BR /&gt;import okhttp3.Response;&lt;BR /&gt;&lt;BR /&gt;import javax.net.ssl.HostnameVerifier;&lt;BR /&gt;import javax.net.ssl.SSLContext;&lt;BR /&gt;import javax.net.ssl.SSLSession;&lt;BR /&gt;import javax.net.ssl.SSLSocketFactory;&lt;BR /&gt;import javax.net.ssl.X509TrustManager;&lt;BR /&gt;&lt;BR /&gt;import java.security.cert.CertificateException;&lt;BR /&gt;import java.util.Set;&lt;BR /&gt;&lt;BR /&gt;public class Main &lt;BR /&gt;{&lt;BR /&gt;public static void main(String[] args) throws Exception &lt;BR /&gt; {&lt;BR /&gt;OkHttpClient cliente = getUnsafeOkHttpClient();&lt;BR /&gt; &lt;BR /&gt; Request request = new Request.Builder()&lt;BR /&gt; .url("URL value")&lt;BR /&gt; .get()&lt;BR /&gt; .addHeader("language", "en")&lt;BR /&gt; .addHeader("accept", "application/json")&lt;BR /&gt; .build();&lt;BR /&gt; &lt;BR /&gt;Response response = cliente.newCall(request).execute();&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;private static OkHttpClient getUnsafeOkHttpClient() {
		  try {
		    // Create a trust manager that does not validate certificate chains
		    final TrustManager[] trustAllCerts = new TrustManager[] {
		        new X509TrustManager() {
		          @Override
		          public void checkClientTrusted(java.security.cert.X509Certificate[] chain, String authType) throws CertificateException {
		          }

		          @Override
		          public void checkServerTrusted(java.security.cert.X509Certificate[] chain, String authType) throws CertificateException {
		          }

		          @Override
		          public java.security.cert.X509Certificate[] getAcceptedIssuers() {
		            return new java.security.cert.X509Certificate[]{};
		          }
		        }
		    };

		    // Install the all-trusting trust manager
		    final SSLContext sslContext = SSLContext.getInstance("SSL");
		    sslContext.init(null, trustAllCerts, new java.security.SecureRandom());
		    // Create an ssl socket factory with our all-trusting manager
		    final SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory();

		    OkHttpClient.Builder builder = new OkHttpClient.Builder();
		    builder.sslSocketFactory(sslSocketFactory, (X509TrustManager)trustAllCerts[0]);
		    builder.hostnameVerifier(new HostnameVerifier() {
		      @Override
		      public boolean verify(String hostname, SSLSession session) {
		        return true;
		      }
		    });

		    OkHttpClient okHttpClient = builder.build();
		    return okHttpClient;
		  } catch (Exception e) {
		    throw new RuntimeException(e);
		  }
		}&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried to put it in a tJava object, but it throws me the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 14:36:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267483#M46350</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-02T14:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267484#M46351</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Could you please advise whether you have loaded all the dependent libraries to Talend job before running the&amp;nbsp;code&amp;nbsp;using tjava?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; I believe you have not added all the dependent libraries and that is the reason for the error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 16:42:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267484#M46351</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-02T16:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267485#M46352</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attach the process...:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tLibraryLoad_1: I attach okhttp-3.11.0.jar&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;tLibraryLoad_2: I attach okio-1.15.0.jar&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;tJava_1:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;try {
	// Create a trust manager that does not validate certificate chains
	final TrustManager[] trustAllCerts = new TrustManager[] 
	{
        new X509TrustManager() 
        {
			@Override
		    public void checkClientTrusted(java.security.cert.X509Certificate[] chain, String 			authType) throws CertificateException 
		    {
			}

		    @Override
		    public void checkServerTrusted(java.security.cert.X509Certificate[] chain, String 			authType) throws CertificateException 
		    {
		    }

	        @Override
	        public java.security.cert.X509Certificate[] getAcceptedIssuers() 
	        {
		    	return new java.security.cert.X509Certificate[]{};
		    }
		 }
	};

	// Install the all-trusting trust manager
	final SSLContext sslContext = SSLContext.getInstance("SSL");
	sslContext.init(null, trustAllCerts, new java.security.SecureRandom());
	// Create an ssl socket factory with our all-trusting manager
	final SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory();

    OkHttpClient.Builder builder = new OkHttpClient.Builder();
    builder.sslSocketFactory(sslSocketFactory, (X509TrustManager)trustAllCerts[0]);
    builder.hostnameVerifier(new HostnameVerifier() 
    {
	    @Override
    	public boolean verify(String hostname, SSLSession session) 
	    {
			return true;
		}
	});

	OkHttpClient cliente = builder.build();

	Request request = new Request.Builder()
			.url("https://xxxxxxxx/security/auth/login?instance=yyyyyy")
			.get()
			.addHeader("client-id", "7ffd60e48b5")
			.addHeader("client-secret", "I5xJ1sJ2yY8cB4yP4bB0kU1vC4")
			.addHeader("authorization", "Basic ZnJhbmNpc2NvLmV4cG9zaXdvcmxkLmNvbTpNYXJjb3MyMDE0IXA=")
			.addHeader("language", "en")
			.addHeader("accept", "application/json")
			.build();
		
	Response response = cliente.newCall(request).execute();
	
	Headers headers = response.headers();
		Set&amp;lt;String&amp;gt; headersSet = headers.names();
		
		for (String headerAux : headersSet)
		{
			System.out.println(headerAux + " = " + headers.get(headerAux));
		}
		
		System.out.println(response);

} 
catch (Exception e) 
{
	throw new RuntimeException(e);
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tRESTClient_1:&lt;/P&gt;&lt;P&gt;Url:&amp;nbsp;"https://xxxxxxxx/"&lt;/P&gt;&lt;P&gt;Relative Path:&amp;nbsp;"portfolio/people/"&lt;/P&gt;&lt;P&gt;HTTP Method: GET&lt;/P&gt;&lt;P&gt;Use Authentication: BASIC with user and pwd filled.&lt;/P&gt;&lt;P&gt;Advanced headers:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;client-id="7ffd60e48b5"
client-secret = "I5xJ1sJ2yY8cB4yP4bB0kU1vC4"
authorization = "Basic ZnJhbmNpc2NvLmV4cG9zaXdvcmxkLmNvbTpNYXJjb3MyMDE0IXA="
language = "en"
accept ="application/json"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I execute the calls to the rest method in the tJava process, they work properly. But I get an error if the call is in the tRESTClient_1 component&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LuRE"&gt;error_talend.png&lt;/A&gt;</description>
      <pubDate>Thu, 03 Jan 2019 07:38:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267485#M46352</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-03T07:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267486#M46353</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;I would suggest you to convert the current code to a user routine and then make calls to that routine from your Talend job.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;The steps remain same since you have the code ready. The only difference is that you need to add all the libraries to routine (Talend Help site has article for this step) and then add the routine to your Talend job using&amp;nbsp;&lt;SPAN&gt;Preferences -&amp;gt; Talend -&amp;gt; Performance -&amp;gt; "Add all user routines to job dependencies, when creating a new job".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; Once this is done, the entire functionality is available to your job as a function (for example, system routines like&amp;nbsp;creating a sequence) and you can call in other parts of your Talend job.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 08:01:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267486#M46353</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-03T08:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267487#M46354</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can call the routine from all tJava components (and probably others) and it works properly, but what about the tRESTClient or tREST components? I still have the same problem with them(I imagine it is because the connection is not done with the Java code)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Francisco&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 08:45:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267487#M46354</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-03T08:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267488#M46355</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;If you could share the screenshots of what you are trying to achieve, it would be really helpful to understand your use case in better way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 08:51:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267488#M46355</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-03T08:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267489#M46356</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only want to call an https service from the tRESTClient component avoiding the SSL certificate verification (I attach 3 images).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using Postman I can avoid the SSL certificate verification. In the tJava component of Talend too. I need the same with the tRESTClient component.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Francisco&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Ltfb"&gt;errorA.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LuH4"&gt;errorB.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LuLG"&gt;errorC.png&lt;/A&gt;</description>
      <pubDate>Thu, 03 Jan 2019 09:23:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267489#M46356</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-03T09:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267490#M46357</link>
      <description>&lt;P&gt;Also it works properly using SoapUI. Any idea to make it work in Talend?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2019 10:50:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267490#M46357</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-04T10:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267491#M46358</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; I do not have much idea in this area and currently I am travelling.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; So lets ask others.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/00539000004XsaeAAC"&gt;@xdshi&lt;/A&gt;&amp;nbsp;- Could you please advise on this?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2019 10:56:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267491#M46358</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-04T10:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267492#M46359</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Are you trying to call &lt;SPAN class="lia-link-navigation lia-link-disabled"&gt;an SSL enabled API by using tRestClient component?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-link-navigation lia-link-disabled"&gt;Best regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-link-navigation lia-link-disabled"&gt;Sabrina&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 06:49:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267492#M46359</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-07T06:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267493#M46360</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, but without installing any SSL certificate. In&amp;nbsp;Soap UI, the calls to the methods work without installing anything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 12:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267493#M46360</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-08T12:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267494#M46361</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have downloaded the certificate from Firefox and I've created the keystore with the keytool command. After that, I've&amp;nbsp;configured&amp;nbsp;the tKeyStore component before the tRESTClient, but now I receive the error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTTPS hostname wrong:&amp;nbsp; should be &amp;lt;XXXXX&amp;gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried using the IP address and the hostname.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any idea?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 14:45:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267494#M46361</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-10T14:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267495#M46362</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have same issue. Any idea for this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 05:15:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267495#M46362</guid>
      <dc:creator>rizalad</dc:creator>
      <dc:date>2019-04-16T05:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267496#M46363</link>
      <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/0053p000007LPTNAA4"&gt;@rizalad&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Could you please give us some background about your job? Did you setup a keystore&amp;nbsp; and access it with tKeyStore component before you connect to your API with tRestClient?&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 07:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267496#M46363</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-17T07:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267497#M46364</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/00539000004XsaeAAC"&gt;@xdshi&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;It quite same with&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LP8YAAW"&gt;@fexposito&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I only want to call an https service from the tRESTClient component avoiding the SSL certificate verification (I attach 1_job_on_talend.png &amp;amp; 2_error_job_on_talend.png).&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Using Postman I can avoid the SSL certificate verification (I attach 3_postman_test.png &amp;amp; 4_postman_result.png).&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LvMj"&gt;1_job_on_talend.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lv3N"&gt;2_error_job_on_talend.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LvOv"&gt;3_postman_test.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LvRE"&gt;4_postman_result.png&lt;/A&gt;</description>
      <pubDate>Thu, 18 Apr 2019 02:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267497#M46364</guid>
      <dc:creator>rizalad</dc:creator>
      <dc:date>2019-04-18T02:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off SSL certificate verification</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267498#M46365</link>
      <description>&lt;P&gt;At the end we had to ask for a new (and correct) certificate on the server. It was not possible to avoid the certificate validation.&lt;/P&gt;&lt;P&gt;Our problem with the certificate was that the CN and the domain were different, and it is needed to be the same.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 08:28:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Turn-off-SSL-certificate-verification/m-p/2267498#M46365</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-23T08:28:45Z</dc:date>
    </item>
  </channel>
</rss>

