<?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: Talend Component kit,  How to access  connection,keystore etc etc  components into another component. in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245903#M149111</link>
    <description>&lt;P&gt;Hi Florent,&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;i just realized this when i installed version 1.1.2 of the intellij plugin,&amp;nbsp; which generates a project with component-api 1.1.1 and&amp;nbsp; component-maven-plugin&amp;nbsp; 1.1.2, it drove me crazy, then i reverted back to 1.1.1 with the speed of light. Thanks and&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;best regards&lt;/P&gt; 
&lt;P&gt;Samba&lt;/P&gt;</description>
    <pubDate>Tue, 04 Dec 2018 16:11:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-12-04T16:11:36Z</dc:date>
    <item>
      <title>Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245896#M149104</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt; 
&lt;P&gt;I using Talend Component kit to develop a custom component, my test environment is TOS 7.1.1&amp;nbsp; &amp;nbsp;and i have the following use case which i m not sure if its supported in TCK or not.there is a custom database component that has an option (checkbox) to use an existing connection, when i selected on this, one or more connection components configured in studio&amp;nbsp; workspace should be selectable as a drop list in my custom component. In .jet this was easily done by defining&amp;nbsp; something like this&amp;nbsp;&lt;/P&gt; 
&lt;UL&gt; 
 &lt;LI&gt;&lt;FONT color="#00CCFF"&gt;&lt;STRONG&gt;&amp;lt;PARAMETER NAME="dbConnection" FIELD="COMPONENT_LIST"&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#00CCFF"&gt;&lt;STRONG&gt;REQUIRED="true" FILTER="tmysqlconnection" NUM_ROW="10"&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#00CCFF"&gt;&lt;STRONG&gt;SHOW_IF="USE_CONNECTION == 'true'" /&amp;gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt; 
&lt;/UL&gt; 
&lt;P&gt;is this possible with Talend Component kit, or is there any kind of workaround to achieve something like this?&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks and&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Samba.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 14:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245896#M149104</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-02T14:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245897#M149105</link>
      <description>&lt;P&gt;Hello Samba,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Talend Component Kit you can reuse the&amp;nbsp;connection metada defined in the metadata tree (on the left) but not other components as connection for now. We will likely enable in a future version to reuse the configuration of another component the same way we support the metadata tree today. For now we need to decide if we limit it to the "configuration types" or if we enable to use another component as a template and&amp;nbsp;use a matching algorithm for the properties, this is still under discussion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 08:56:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245897#M149105</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-03T08:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245898#M149106</link>
      <description>&lt;P&gt;Hi&amp;nbsp; Romain,&lt;/P&gt; 
&lt;P&gt;thanks for the response and important updates on the stand of things.&amp;nbsp; &amp;nbsp;Please if i may ask is it possible to add&amp;nbsp; configuration steps on how to use some of the new features&amp;nbsp; in the documentation(as part of the tutorials), for example i m trying to implement a simple guessSchema as its like this&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;@DiscoverSchema
public Schema guessSchema() {
    return factory.newSchemaBuilder(Schema.Type.RECORD)
            .withEntry(factory.newEntryBuilder().withName("id").withType(Schema.Type.LONG).build())
            .withEntry(factory.newEntryBuilder().withName("name").withType(Schema.Type.STRING).build())
            .build();
}&lt;/PRE&gt; 
&lt;P&gt;In the documentation and getting certain&amp;nbsp; configuration errors , in this particular(guessSchema) case there is an error about the first parameter being a dataset configured with&amp;nbsp; @configure. Once more thanks for the updates.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;best regards&lt;/P&gt; 
&lt;P&gt;Samba&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;best regards&lt;/P&gt; 
&lt;P&gt;Samba.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 12:49:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245898#M149106</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-03T12:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245899#M149107</link>
      <description>&lt;P&gt;Hi Samba,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I'll check the documentation and add any relevant info asap. Can you show me more details about your error and share some other examples of what you'd like to see in the documentation?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Florent&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 14:22:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245899#M149107</guid>
      <dc:creator>florentlb</dc:creator>
      <dc:date>2018-12-03T14:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245900#M149108</link>
      <description>&lt;P&gt;Hi Florent,&lt;/P&gt; 
&lt;P&gt;thanks for your reponse,&amp;nbsp; According to the info on how to create a&amp;nbsp; guesSchema, and using&amp;nbsp; studio 7.1.1 to test the components,&amp;nbsp; &amp;nbsp;i did something like this&lt;/P&gt; 
&lt;PRE&gt;  @DiscoverSchema
    public Schema guessSchema() {
        return factory.newSchemaBuilder(Schema.Type.RECORD)
                .withEntry(factory.newEntryBuilder().withName("offset").withType(Schema.Type.LONG).build())
                .withEntry(factory.newEntryBuilder().withName("payload").withType(Schema.Type.STRING).build())
                .build();
    }&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;and i got the following errror&amp;nbsp;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt; public org.talend.sdk.component.api.record.Schema de.cimt.talend.components.service.UiActionService.guessSchema(org.talend.sdk.component.api.service.record.RecordBuilderFactory) should have its first parameter being a
 dataset (marked with @Config)&lt;/PRE&gt; 
&lt;P&gt;even if i configure a dateset and pass it as a parameter to the guessSchema function, i still get the same error.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Not&amp;nbsp; just that , in the recent version of the framework, certain roles are enforced on the use of datasets and datastores, it will also be great if in&amp;nbsp; documentation&amp;nbsp; , a demonstration of these roles&amp;nbsp; is implemented in the part " how to create&amp;nbsp; your first component",&amp;nbsp; and in particular how to define datasets and datastores in all the component types(inputs,outputs, processing). Why am i saying this? if i create a project with the latest version of the frame work be it from intellij or the browser,&amp;nbsp; &amp;nbsp;following&amp;nbsp; the tutorials on how to create your first component, and then run it, i will have errors about datasets and datastores.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;once more thanks to for your reponse and great kudos to you gurus at Talend, i love your product.&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Samba&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 12:59:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245900#M149108</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-04T12:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245901#M149109</link>
      <description>&lt;P&gt;Thanks, this is very valuable feedback, I will go through it and make the necessary updates as soon as I can.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this still blocking you or did you find you way around?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Florent&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 13:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245901#M149109</guid>
      <dc:creator>florentlb</dc:creator>
      <dc:date>2018-12-04T13:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245902#M149110</link>
      <description>&lt;P&gt;Hello the&amp;nbsp;@Config is a typo,&amp;nbsp;it should be @DataSet.&amp;nbsp;You can't implement a guessSchema method without a dataset configuration as first parameter.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 13:25:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245902#M149110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-04T13:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245903#M149111</link>
      <description>&lt;P&gt;Hi Florent,&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;i just realized this when i installed version 1.1.2 of the intellij plugin,&amp;nbsp; which generates a project with component-api 1.1.1 and&amp;nbsp; component-maven-plugin&amp;nbsp; 1.1.2, it drove me crazy, then i reverted back to 1.1.1 with the speed of light. Thanks and&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;best regards&lt;/P&gt; 
&lt;P&gt;Samba&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 16:11:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245903#M149111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-04T16:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit,  How to access  connection,keystore etc etc  components into another component.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245904#M149112</link>
      <description>&lt;P&gt;Hello, Samba!&lt;BR /&gt;&lt;BR /&gt;Here is a Jira ticket to track progress related to Connection Component support in Talend Studio.&lt;BR /&gt;&lt;A href="https://jira.talendforge.org/browse/TUP-21090" target="_blank" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/TUP-21090&lt;/A&gt;&lt;BR /&gt;Idea is to generate Connection Component automatically out of @Datastore Configuration class.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Ivan&lt;/P&gt;</description>
      <pubDate>Wed, 05 Dec 2018 18:08:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-How-to-access-connection-keystore-etc-etc/m-p/2245904#M149112</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-05T18:08:15Z</dc:date>
    </item>
  </channel>
</rss>

