<?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: Handle AWS Library Dependencies on job in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222169#M15877</link>
    <description>&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Could you please help me in knowing how you are handling AWS encryption through talend&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;In there are two types of encryption&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;1) clientside&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;check encrypt box. give kms key.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;2)serverside&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;check serverside encryption box give kms key&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;do not use both encryption at a time.&lt;/P&gt; 
&lt;P&gt;use JCE policies by replacing those jars in&amp;nbsp;C:\Program Files\Java\jre1.8.0_77\lib\security&lt;/P&gt; 
&lt;P&gt;1)local_policy.jar&lt;/P&gt; 
&lt;P&gt;2)US_export_policy.jar&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;Also would like to know about how you are using jars/libraries of AWS SDK in talend?&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;download AWS SDK from aws website. size will be more than 300 MB&lt;/P&gt; 
&lt;P&gt;extract and rename&amp;nbsp;aws-java-sdk-1.11.507.jar to requested sdk jar version name from component.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Feb 2019 11:56:34 GMT</pubDate>
    <dc:creator>YPMAL</dc:creator>
    <dc:date>2019-02-28T11:56:34Z</dc:date>
    <item>
      <title>Handle AWS Library Dependencies on job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222166#M15874</link>
      <description>&lt;P&gt;Hello i have problem with using AWS SDK in my tJavaFlex code get this exception:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;Exception in thread "main" java.lang.NoSuchMethodError: com.amazonaws.SDKGlobalConfiguration.isInRegionOptimizedModeEnabled()Z
at com.amazonaws.ClientConfigurationFactory.getConfig(ClientConfigurationFactory.java:35)
at com.amazonaws.client.builder.AwsClientBuilder.resolveClientConfiguration(AwsClientBuilder.java:167)
at com.amazonaws.client.builder.AwsClientBuilder.access$000(AwsClientBuilder.java:54)
at com.amazonaws.client.builder.AwsClientBuilder$SyncBuilderParams.&amp;lt;init&amp;gt;(AwsClientBuilder.java:478)
at com.amazonaws.client.builder.AwsClientBuilder.getSyncClientParams(AwsClientBuilder.java:419)
at com.amazonaws.client.builder.AwsSyncClientBuilder.build(AwsSyncClientBuilder.java:46)&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;After doing some googling, I found that this problem is because the AWS SDK dependencies, maybe because we are using sofware that is using old-Talend version (so don't tell to upgrade Talend version) so it still using old AWS SDK version. However, i have try to edit routine libraries in routines and setup routine libraries in code and see the libraries already installed in routines and jobs but in runtime the tJavaFlex still refers to old AWS SDK.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;How to manage tJavaFlex component to use specific libraries/dependencies correctly?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 07:34:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222166#M15874</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T07:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Handle AWS Library Dependencies on job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222167#M15875</link>
      <description>&lt;P&gt;Already found solution need to change all the component dependencies in the folder plugins -&amp;gt; xxxlocalprovider -&amp;gt; components -&amp;gt; [Your Components] -&amp;gt; [component_name]_java.xml&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then import all the needed dependencies from external modules&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 10:00:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222167#M15875</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-27T10:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Handle AWS Library Dependencies on job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222168#M15876</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your post. It is helpful!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me in knowing how you are handling AWS encryption through talend.&lt;/P&gt;
&lt;P&gt;If you give me any sample talend job then that would be very useful.&lt;/P&gt;
&lt;P&gt;Also would like to know about how you are using jars/libraries of AWS SDK in talend?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 11:56:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222168#M15876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-16T11:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Handle AWS Library Dependencies on job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222169#M15877</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Could you please help me in knowing how you are handling AWS encryption through talend&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;In there are two types of encryption&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;1) clientside&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;check encrypt box. give kms key.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;2)serverside&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;check serverside encryption box give kms key&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;do not use both encryption at a time.&lt;/P&gt; 
&lt;P&gt;use JCE policies by replacing those jars in&amp;nbsp;C:\Program Files\Java\jre1.8.0_77\lib\security&lt;/P&gt; 
&lt;P&gt;1)local_policy.jar&lt;/P&gt; 
&lt;P&gt;2)US_export_policy.jar&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;Also would like to know about how you are using jars/libraries of AWS SDK in talend?&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;download AWS SDK from aws website. size will be more than 300 MB&lt;/P&gt; 
&lt;P&gt;extract and rename&amp;nbsp;aws-java-sdk-1.11.507.jar to requested sdk jar version name from component.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 11:56:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handle-AWS-Library-Dependencies-on-job/m-p/2222169#M15877</guid>
      <dc:creator>YPMAL</dc:creator>
      <dc:date>2019-02-28T11:56:34Z</dc:date>
    </item>
  </channel>
</rss>

