<?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: creation component - import java libraries in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274618#M51236</link>
    <description>Now I used my jar's for code executed at runtime of my job.All worked correctly. 
&lt;BR /&gt;But the imports in the scriptlet part (&amp;lt;% %&amp;gt;) to use when generating the component templates, don't work. 
&lt;BR /&gt;Can we make some import declaration in component javajet? 
&lt;BR /&gt;For example, like this: 
&lt;BR /&gt;&amp;lt;%@ jet 
&lt;BR /&gt; imports=" 
&lt;BR /&gt; org.talend.core.model.process.INode 
&lt;BR /&gt; org.talend.core.model.metadata.IMetadataTable 
&lt;BR /&gt; org.talend.core.model.metadata.IMetadataColumn 
&lt;BR /&gt; ... 
&lt;BR /&gt; org.myproject.myclasses.MyClass 
&lt;BR /&gt; " 
&lt;BR /&gt;%&amp;gt; 
&lt;BR /&gt;I need to use later: 
&lt;BR /&gt;&amp;lt;% MyClass myclass = new MyClass(); %&amp;gt; 
&lt;BR /&gt;How can I do something like this? 
&lt;BR /&gt;Now there is an exception (similar #6 of this list) 
&lt;BR /&gt;BR, 
&lt;BR /&gt;Roman</description>
    <pubDate>Thu, 22 Oct 2009 09:33:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-10-22T09:33:46Z</dc:date>
    <item>
      <title>creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274605#M51223</link>
      <description>Hi, 
&lt;BR /&gt;I create a new java component, which use java libraries. So i add at beginning of my script 
&lt;BR /&gt;&amp;lt;%@ jet 
&lt;BR /&gt; imports=" 
&lt;BR /&gt; org.talend.core.model.process.INode 
&lt;BR /&gt; org.talend.designer.codegen.config.CodeGeneratorArgument 
&lt;BR /&gt; org.talend.core.model.process.ElementParameterParser 
&lt;BR /&gt; java.awt.Image 
&lt;BR /&gt; javax.imageio.ImageIO 
&lt;BR /&gt; " 
&lt;BR /&gt;%&amp;gt; 
&lt;BR /&gt;But then i trie to use this component in mjob , the generator doesn't add lines in script. Why ?</description>
      <pubDate>Sat, 16 Nov 2024 14:16:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274605#M51223</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274606#M51224</link>
      <description>G'day, 
&lt;BR /&gt;I have the same problem (I think): I created a component of my own that uses different external libraries and when I try to execute my job with this component, I have a "My_Class cannot be resolved to a type". 
&lt;BR /&gt;The only workaround I know is to use tLibraryLoad to load my libraries one after the other but, when I have many different libraries, it soon becomes quite chaotic in the "Job Design View" screen as there must be one component by library. 
&lt;BR /&gt;My question is: Is it possible to load the content of a folder in the CLASSPATH instead of having to select one JAR at a time? 
&lt;BR /&gt;I have tried to put my jar in the same folder as my component (like I saw for some other components such as 'tJasperOutput' for example) but it doesn't seem to be working. What am I missing there? 
&lt;BR /&gt;Thanks again for your help and keep on the good work guys! 
&lt;BR /&gt;Chris</description>
      <pubDate>Mon, 18 Aug 2008 12:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274606#M51224</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-18T12:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274607#M51225</link>
      <description>you have to modify the xml file corresponding to your component.
&lt;BR /&gt;for my chart components I use jfreechart and jcommons so I've put this line to my xml :
&lt;BR /&gt;&amp;lt;CODEGENERATION&amp;gt;
&lt;BR /&gt; &amp;lt;IMPORTS&amp;gt;
&lt;BR /&gt; &amp;lt;IMPORT NAME="JFreeChart" MODULE="jfreechart-1.0.3.jar" REQUIRED="true"/&amp;gt;
&lt;BR /&gt; &amp;lt;IMPORT NAME="JCommon" MODULE="jcommon-1.0.6.jar" REQUIRED="true"/&amp;gt;
&lt;BR /&gt; &amp;lt;/IMPORTS&amp;gt;
&lt;BR /&gt; &amp;lt;/CODEGENERATION&amp;gt;
&lt;BR /&gt;I hope it will help you
&lt;BR /&gt;olivier</description>
      <pubDate>Fri, 22 Aug 2008 14:27:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274607#M51225</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-22T14:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274608#M51226</link>
      <description>Super cool !!!
&lt;BR /&gt;Cheerios !
&lt;BR /&gt;Chris</description>
      <pubDate>Fri, 22 Aug 2008 14:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274608#M51226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-22T14:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274609#M51227</link>
      <description>you'll welcome 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Fri, 22 Aug 2008 14:39:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274609#M51227</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-22T14:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274610#M51228</link>
      <description>hi, 
&lt;BR /&gt;doing my first Component , i've got similar problem ! 
&lt;BR /&gt;I've added element IMPORT in configuration XML file : 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&amp;lt;CODEGENERATION&amp;gt;&lt;BR /&gt; &amp;lt;IMPORTS&amp;gt;&lt;BR /&gt; &amp;lt;IMPORT NAME="jcifs" MODULE="jcifs-1.3.0.jar" REQUIRED="true"/&amp;gt;&lt;BR /&gt; &amp;lt;/IMPORTS&amp;gt;&lt;BR /&gt; &amp;lt;/CODEGENERATION&amp;gt;&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;and also modified string imports of begin javajet : 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&amp;lt;%@ jet &lt;BR /&gt; imports="&lt;BR /&gt; org.talend.core.model.process.INode &lt;BR /&gt; org.talend.core.model.process.ElementParameterParser &lt;BR /&gt; org.talend.core.model.metadata.IMetadataTable &lt;BR /&gt; org.talend.core.model.metadata.IMetadataColumn &lt;BR /&gt; org.talend.core.model.process.IConnection&lt;BR /&gt; org.talend.core.model.process.IConnectionCategory&lt;BR /&gt; org.talend.designer.codegen.config.CodeGeneratorArgument&lt;BR /&gt; org.talend.core.model.metadata.types.JavaTypesManager&lt;BR /&gt; org.talend.core.model.metadata.types.JavaType&lt;BR /&gt; java.util.List &lt;BR /&gt; java.util.Map&lt;BR /&gt; jcifs.smb.NtlmPasswordAuthentication&lt;BR /&gt; jcifs.smb.SmbException&lt;BR /&gt; jcifs.smb.SmbFile&lt;BR /&gt; jcifs.smb.SmbFileInputStream&lt;BR /&gt; jcifs.smb.SmbFileOutputStream &lt;BR /&gt; " &lt;BR /&gt;%&amp;gt;&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;without "jcifs import" it works (no compilation problem) ... but when I add these ones , I've a "Component compile fail". 
&lt;BR /&gt;I've tried to add jcifs jar file in Talend lib repository, and also in my componenent repository ...! 
&lt;BR /&gt;thanks for your help 
&lt;BR /&gt;laurent</description>
      <pubDate>Mon, 26 Jan 2009 12:10:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274610#M51228</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-01-26T12:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274611#M51229</link>
      <description>Hello kzone, 
&lt;BR /&gt;The import in the scriptlet part (&amp;lt;% %&amp;gt;) are only used when generating the component templates. 
&lt;BR /&gt;You can't do import for code executed at runtime of your job. 
&lt;BR /&gt;In your component javajet remove the import declaration and then use the fully qualified class names 
&lt;BR /&gt;for example : 
&lt;BR /&gt; 
&lt;PRE&gt;jcifs.smb.SmbFileInputStream sis = new jcifs.smb.SmbFileInputStream(...);&lt;/PRE&gt; 
&lt;BR /&gt;HTH,</description>
      <pubDate>Mon, 26 Jan 2009 12:50:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274611#M51229</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-01-26T12:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274612#M51230</link>
      <description>hi mhirt,
&lt;BR /&gt;thanks for your explanation and precisions ....
&lt;BR /&gt;hope now i 'll be able to finish it , and put it in the ecosystem !
&lt;BR /&gt;++</description>
      <pubDate>Mon, 26 Jan 2009 13:27:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274612#M51230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-01-26T13:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274613#M51231</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;You can't do import for code executed at runtime of your job.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Is this going to be changed in future versions? or is this a design desision?&lt;BR /&gt;Regards,&lt;BR /&gt;Bas van Reeuwijk.</description>
      <pubDate>Thu, 05 Mar 2009 16:28:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274613#M51231</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-05T16:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274614#M51232</link>
      <description>It's a design choice : if component A and component B use 2 Array class in 2 different packages, they can not be used in the same Job if we add an import feature.
&lt;BR /&gt;Fully qualified name is the only solution to avoid such problems.
&lt;BR /&gt;Best Regards,</description>
      <pubDate>Thu, 05 Mar 2009 18:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274614#M51232</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-05T18:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274615#M51233</link>
      <description>Ok, I understand.&lt;BR /&gt;Thanks for the quick reply.&lt;BR /&gt;Bas.</description>
      <pubDate>Fri, 06 Mar 2009 04:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274615#M51233</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-06T04:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274616#M51234</link>
      <description>Is the jar-files must be in the component directory only? &lt;BR /&gt;Can I put its in &amp;lt;Talend_home&amp;gt;/lib/java and use its the same way?</description>
      <pubDate>Fri, 11 Sep 2009 14:57:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274616#M51234</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-11T14:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274617#M51235</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Is the jar-files must be in the component directory only? &lt;BR /&gt;Can I put its in &amp;lt;Talend_home&amp;gt;/lib/java and use its the same way?&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;For private usage yes. But if commit to ecosystem, had better include related lib in component folder, unless they have already been used in other component. Notice that if you look into the fresh TOS zip package, the lib folder is not exist at the very beginning, all the lib in %TALEND_HOME%/lib/ are gethered after the studio start.</description>
      <pubDate>Thu, 17 Sep 2009 08:48:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274617#M51235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-17T08:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274618#M51236</link>
      <description>Now I used my jar's for code executed at runtime of my job.All worked correctly. 
&lt;BR /&gt;But the imports in the scriptlet part (&amp;lt;% %&amp;gt;) to use when generating the component templates, don't work. 
&lt;BR /&gt;Can we make some import declaration in component javajet? 
&lt;BR /&gt;For example, like this: 
&lt;BR /&gt;&amp;lt;%@ jet 
&lt;BR /&gt; imports=" 
&lt;BR /&gt; org.talend.core.model.process.INode 
&lt;BR /&gt; org.talend.core.model.metadata.IMetadataTable 
&lt;BR /&gt; org.talend.core.model.metadata.IMetadataColumn 
&lt;BR /&gt; ... 
&lt;BR /&gt; org.myproject.myclasses.MyClass 
&lt;BR /&gt; " 
&lt;BR /&gt;%&amp;gt; 
&lt;BR /&gt;I need to use later: 
&lt;BR /&gt;&amp;lt;% MyClass myclass = new MyClass(); %&amp;gt; 
&lt;BR /&gt;How can I do something like this? 
&lt;BR /&gt;Now there is an exception (similar #6 of this list) 
&lt;BR /&gt;BR, 
&lt;BR /&gt;Roman</description>
      <pubDate>Thu, 22 Oct 2009 09:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274618#M51236</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-22T09:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274619#M51237</link>
      <description>I want to use classes of my plug-in project when generating the component templates. If I import my class in javajet file, i am getting compilation issue due to the package invisibilty.&lt;BR /&gt;In many javajet files I found packages imported only from org.talend.core and org.talend.designer.codegen projects. Is there any limitation to use only these projects as dependencies for generating the component templates?&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay</description>
      <pubDate>Wed, 14 Jul 2010 07:25:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274619#M51237</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-14T07:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274620#M51238</link>
      <description>Hi,
&lt;BR /&gt;I reply to this old post because I have the same problems. I am developing a new Talend component which uses XMLRPC to connect to a server. I need many imports, some from XMLRPC libraries. I have made like it's written:
&lt;BR /&gt;&amp;lt;CODEGENERATION&amp;gt;
&lt;BR /&gt; &amp;lt;IMPORTS&amp;gt;
&lt;BR /&gt; &amp;lt;IMPORT NAME="openerp" MODULE="openerp.jar" REQUIRED="true"/&amp;gt;
&lt;BR /&gt; &amp;lt;/IMPORTS&amp;gt;
&lt;BR /&gt; &amp;lt;/CODEGENERATION&amp;gt;
&lt;BR /&gt;openerp.org.apache.xmlrpc.client.XmlRpcClient client = new openerp.org.apache.xmlrpc.client.XmlRpcClient();
&lt;BR /&gt;At the runtime, an error appears like "openerp is not recognized as a valid type". What must i do ? This is wrong ?
&lt;BR /&gt;Thank for help, kind regards.
&lt;BR /&gt;Zak</description>
      <pubDate>Thu, 22 Sep 2011 07:50:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274620#M51238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-22T07:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274621#M51239</link>
      <description>Hi&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;openerp.org.apache.xmlrpc.client.XmlRpcClient client = new openerp.org.apache.xmlrpc.client.XmlRpcClient();&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Are you sure that this is the correct package name?  I see references on the web to org.apache.xmlrpc.client.XmlRpcClient, but I see none to openerp.org.apache.xmlrpc.client.XmlRpcClient.&lt;BR /&gt;You only need to declare the library - it's not necessary to prefix its name to the classes it provides. Try &lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;org.apache.xmlrpc.client.XmlRpcClient client = new org.apache.xmlrpc.client.XmlRpcClient();&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Imad</description>
      <pubDate>Thu, 22 Sep 2011 09:16:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274621#M51239</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-22T09:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274622#M51240</link>
      <description>Hi Imad, 
&lt;BR /&gt;Thank you for your quick answer but, I'm sure 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M9p6.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134116iFBD5D7F21624A744/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M9p6.png" alt="0683p000009M9p6.png" /&gt;&lt;/span&gt; Because of integrity problems of the officiel XmlRpc library, I have made mine. 
&lt;BR /&gt;I have tried with your version but now I have a "java.lang.NoClassDefFoundError".</description>
      <pubDate>Thu, 22 Sep 2011 09:43:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274622#M51240</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-22T09:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: creation component - import java libraries</title>
      <link>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274623#M51241</link>
      <description>Hello, I often had an issue with jars in custom components.
&lt;BR /&gt;Check if the jar is copied into the lib/java directory under your install path.
&lt;BR /&gt;It should, but it happened to me that the file was not automatically copied from the component folder to there when installing the component.
&lt;BR /&gt;Particularly if a previous version of the file (with the same name) was already there, it was not copied.
&lt;BR /&gt;If this is the case, the workaround is to copy manually the jar.
&lt;BR /&gt;good luck</description>
      <pubDate>Thu, 22 Sep 2011 14:19:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/creation-component-import-java-libraries/m-p/2274623#M51241</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-22T14:19:34Z</dc:date>
    </item>
  </channel>
</rss>

