<?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: &amp;quot;My Extensions&amp;quot; can't add a component in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342530#M110388</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;Could you please indicate on which build version you got this issue? Can you successfully add your custom component into talend exchange portal through &lt;A href="https://exchange.talend.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://exchange.talend.com/&lt;/A&gt; directly?&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jul 2017 08:37:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-07-24T08:37:25Z</dc:date>
    <item>
      <title>"My Extensions" can't add a component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342526#M110384</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am trying to push a component in Talend Exchange but I have the following error : "Echec de l'installation. You Should check it."&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I also don't have the time to view the description of the error because the window disapear in half a second. I don't have any log in my Studio concerning the error.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I don't know what to do, any ideas ? The component is tested and works perfcectly on my Studio.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 09:30:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342526#M110384</guid>
      <dc:creator>DerfelCadarn</dc:creator>
      <dc:date>2024-11-16T09:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: "My Extensions" can't add a component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342527#M110385</link>
      <description>&lt;P&gt;[EDIT] : I managed to see the description of the error : "JSONObject["resultNewExtension"] not found." and I can't find this string in my component files (I don't use JSONObject either).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas ?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 10:46:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342527#M110385</guid>
      <dc:creator>DerfelCadarn</dc:creator>
      <dc:date>2017-07-21T10:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: "My Extensions" can't add a component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342528#M110386</link>
      <description>&lt;P&gt;[EDIT 2] : I found the following (Talend) Java code here&amp;nbsp;&lt;A title="TalendCode" href="http://useof.org/java-open-source/us.monoid.json.JSONObject/4" target="_self" rel="nofollow noopener noreferrer"&gt;http://useof.org/java-open-source/us.monoid.json.JSONObject/4&lt;/A&gt;&amp;nbsp;while looking for the String "&lt;SPAN&gt;resultNewExtension&lt;/SPAN&gt;". One of the parameter (typeExtension, username, passwordHash, category, name, description) isn't correct ???&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;/**
     * 
     * DOC hcyi Comment method "insertionExtensionService".
     * 
     * @param typeExtension
     * @param username
     * @param passwordHash
     * @param category
     * @param name
     * @param description
     * @return
     */
public static WebserviceStatus insertionExtensionService(String typeExtension, String username, String passwordHash, String category, String name, String description) {
    WebserviceStatus ws = new WebserviceStatus();
    ws.setResult(false);
    Resty r = new Resty();
    JSONObject tokenMessage = new JSONObject();
    try {
        tokenMessage.put("username", username);
        tokenMessage.put("passwordHash", passwordHash);
        tokenMessage.put("typeExtension", typeExtension);
        tokenMessage.put("category", category);
        tokenMessage.put("name", name);
        tokenMessage.put("description", description);
        JSONObject token = new us.monoid.json.JSONObject();
        token.put("newExtension", tokenMessage);
        AbstractContent ac = Resty.content(token);
        MultipartContent mpc = Resty.form(new FormData("data", ac));
        TextResource textResult = r.text(exchangeWSServer + "publishExtension.php", mpc);
        JSONObject resultObject = new JSONObject(textResult.toString());
        JSONObject object = (JSONObject) resultObject.get("resultNewExtension");
        String idExtension = object.getString("idExtension");
        //
        ws.setValue(idExtension);
        ws.setResult(true);
        //$NON-NLS-1$
        ws.setMessageException(Messages.getString("ExchangeWebService.insertionExtensionSuccessful"));
    } catch (JSONException e) {
        ws.setMessageException(e.getMessage());
    } catch (IOException e) {
        e.printStackTrace();
        ws.setMessageException(e.getMessage());
    } catch (Exception e) {
        e.printStackTrace();
        ws.setMessageException(e.getMessage());
    }
    return ws;
}&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 11:11:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342528#M110386</guid>
      <dc:creator>DerfelCadarn</dc:creator>
      <dc:date>2017-07-21T11:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: "My Extensions" can't add a component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342529#M110387</link>
      <description>&lt;P&gt;[EDIT 3] : below a screenshot of my query to Talend Exchange :&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 804px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LvcW.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/148386i8B16A63B54AA8AD2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LvcW.png" alt="0683p000009LvcW.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Somebody ever managed to put a component to Talend Exchange with the "My Extensions" window ? Is it bugged ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 11:23:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342529#M110387</guid>
      <dc:creator>DerfelCadarn</dc:creator>
      <dc:date>2017-07-21T11:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: "My Extensions" can't add a component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342530#M110388</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;Could you please indicate on which build version you got this issue? Can you successfully add your custom component into talend exchange portal through &lt;A href="https://exchange.talend.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://exchange.talend.com/&lt;/A&gt; directly?&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2017 08:37:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342530#M110388</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-24T08:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: "My Extensions" can't add a component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342531#M110389</link>
      <description>&lt;P&gt;Hello Sabrina,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I tried with various versions of Talend, from a Talend Data Fabric 6.1.1.29160609_1327_patch to a TOS_DI-V6.3.1 and I have exactly the same error. Do you have a procedure for &lt;A href="https://exchange.talend.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://exchange.talend.com/&lt;/A&gt; the only thing I though I could do was downloading new components...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2017 10:57:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-My-Extensions-quot-can-t-add-a-component/m-p/2342531#M110389</guid>
      <dc:creator>DerfelCadarn</dc:creator>
      <dc:date>2017-07-24T10:57:59Z</dc:date>
    </item>
  </channel>
</rss>

