<?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: Activiti Designer Extension in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13228#M5523</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;HTH &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://connect.hyland.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I actually left the class in the org.gecos package, I just made sure the icon was in the jar.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Dec 2010 14:24:07 GMT</pubDate>
    <dc:creator>tiesebarrell</dc:creator>
    <dc:date>2010-12-21T14:24:07Z</dc:date>
    <item>
      <title>Activiti Designer Extension</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13222#M5517</link>
      <description>I created an extension for the palette of the designer but when I activiti a new project and want to add a new diagram palette I get no objects and gives me the error I show below. I Take the instructions of the user guide in the chapter "Extending Designer activiti "ThanksProblems occurred when inv</description>
      <pubDate>Fri, 17 Dec 2010 19:31:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13222#M5517</guid>
      <dc:creator>gecos</dc:creator>
      <dc:date>2010-12-17T19:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Designer Extension</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13223#M5518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you provide some code of the class you created as a custom node?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Dec 2010 20:17:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13223#M5518</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2010-12-17T20:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Designer Extension</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13224#M5519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;package org.gecos;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.activiti.designer.integration.servicetask.AbstractCustomServiceTask;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.activiti.designer.integration.servicetask.annotation.Help;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.activiti.designer.integration.servicetask.annotation.Property;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.activiti.designer.integration.servicetask.annotation.Runtime;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.activiti.designer.integration.servicetask.PropertyType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/**&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* @author John Doe&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* @version 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* @since 1.0.0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;*/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;@Runtime(delegationClass = "org.gecos.runtime.GecosTaskJavaDelegation")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;@Help(displayHelpShort = "Nuevo Objeto Transaccional", displayHelpLong = "Crea una nueva transaccion en el Sistema")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;public class GecosTask extends AbstractCustomServiceTask {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; private static final String HELP_OT_GECOS = "Nombre de la Transacción a adjuntar";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; @Property(type = PropertyType.TEXT, displayName = "Nombre Objeto Transaccional", required = true)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; @Help(displayHelpShort = "Seleccione el nombre del objeto transaccional", displayHelpLong = HELP_OT_GECOS)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; private String nombreTransaccion;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; @Property(type = PropertyType.MULTILINE_TEXT, displayName = "Comentarios")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; @Help(displayHelpShort = "Comentarios", displayHelpLong = "Comentarios")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; private String comentarios;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; /*&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; * (non-Javadoc)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; *&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; * @see org.activiti.designer.integration.servicetask.AbstractCustomServiceTask #contributeToPaletteDrawer()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; @Override&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; public String contributeToPaletteDrawer() {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "Gecos BPMN";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; @Override&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; public String getName() {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "Tarea Gecos";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; /*&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; * (non-Javadoc)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; *&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; * @see org.activiti.designer.integration.servicetask.AbstractCustomServiceTask #getSmallIconPath()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; @Override&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; public String getSmallIconPath() {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "icons/ico_gecos.png";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Dec 2010 16:05:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13224#M5519</guid>
      <dc:creator>gecos</dc:creator>
      <dc:date>2010-12-20T16:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Designer Extension</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13225#M5520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;gecos,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've tested you class and it works fine for me. I think the problem you have is that the icon you're referencing isn't in the jar file, or not in the icons folder at the top level. I tested with a valid path and an invalid one and the invalid path threw the exact same exception you mentioned. So I'd check whether the icon is correctly included as you reference in the getSmallIconPath() method.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 07:51:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13225#M5520</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2010-12-21T07:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Designer Extension</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13226#M5521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;And since you pointed this out I feel the exception you get in this case is undesirable, so I've created an issue to help developers in the future: &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-467" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-467&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 07:58:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13226#M5521</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2010-12-21T07:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Designer Extension</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13227#M5522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your help. I changed the class to the default package and finally the extension work. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 14:12:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13227#M5522</guid>
      <dc:creator>gecos</dc:creator>
      <dc:date>2010-12-21T14:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Designer Extension</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13228#M5523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;HTH &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://connect.hyland.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I actually left the class in the org.gecos package, I just made sure the icon was in the jar.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 14:24:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-designer-extension/m-p/13228#M5523</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2010-12-21T14:24:07Z</dc:date>
    </item>
  </channel>
</rss>

