<?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 &amp; CDI in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31788#M16439</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Not yet (I think). I can inject process-variables into a bean but not yet use them in JSF (or anywhere else using UEL for that matter) because only @Named beans have an EL-Name. This is one item to work on.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;For (CDI) beans yes, but it is not required to have @Named to be resolved in jsf el resolvers. You just need something to inject it into that 'scope' with a correct name. I have some small el resolver code that reads jsf message properties so you can use that in a class. The other way around would work as easily. I'll put this on my todo list. with a priority.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Right, in CDI you need to tell the container how to resolve the remote EJB using @EJB(…) and then bind it to sth., e.g. using a producer method. This is not yet what we want. (Although I often think that it is better to write 3 lines of type-safe Java Code instead of xml &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; But that is a matter of taste… ) So yes the 'full' EJB resolver is definitely needed. Even if it was supported, I don't think people want to depend on CDI for doing this.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Yep… no more xml hell… (unless e.g for business oriented edi messages) This is kind of how Jorams example worked with spring… just wrapping it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yes that would also be a "TBD". If the one singleton is the only place where EE6 is really required, than maybe it is possible to target EE5.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;CDI has the notion of application scoped and singleton as well. I just do not seem to be able to get it 'auto started' without e.g. a servletlistener when starting the server. Might be enough though if the first request triggers it (just some small delay then)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Jan 2011 14:39:20 GMT</pubDate>
    <dc:creator>ronald_van_kuij</dc:creator>
    <dc:date>2011-01-27T14:39:20Z</dc:date>
    <item>
      <title>Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31785#M16436</link>
      <description>I saw Ronald's commit(s) today and realized that I have something quite similar in the pipeline. It looks to me like what has been committed today is essentially a set of JSF-Components and a set of CDI-Components and Annotations for Human-Task-Management. Looks pretty cool. I have something similar</description>
      <pubDate>Wed, 26 Jan 2011 17:46:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31785#M16436</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2011-01-26T17:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31786#M16437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I saw Ronald's commit*(s)*&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Yes, lots…. &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: &amp;lt;beeep&amp;gt; SVN.. why can't recursive deletes be supported. And getting the flue also does not help to stay focussed&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Looks pretty cool.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;It's a beginning. Primarily for an internal poc to show the power of jsf2, cdi, primefaces but I wanted it (temporarily?) stored in a public svn to be able to point to it for discussions and write blogs about it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have something similar although I took it a bit further: I have written a proper CDI-Extension providing an own scope (@ProcessScoped)&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt; Now *that* is cool. It is^H^Hwas on my todo list for somewhere in the not to distant future. Does this mean you can use procesvariables in EL in a jsf page? or initially just in the java classes? (does not make it less cool) Yet, I also think of supporting something like a variables['….'] construction so &lt;/SPAN&gt;&lt;A href="http://www.metawidget.org/" rel="nofollow noopener noreferrer"&gt;metawidget&lt;/A&gt;&lt;SPAN&gt; can be used (still needs integration with primefaces, not sure if that is difficult)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;ike #{myBean.method(…)} 'myBean' being a CDI-managed Bean so potentially also an EJB… (I saw some discussion around EJB-invocation in the last weeks, so this would be yet another possibility &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; )&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;And this is cool to. Thought of this to, but I was not sure how difficult it would be to get the Weld/CDI resolver into activiti (I thought it was a composite resolver as well). The 'full' ejb resolver will still be needed afaik, since CDI cannot resolve remote beans.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Ronald, if you are interested in pursuing this, I would be ready to help out and contribute.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Definitely. The core team just has to decide if this is an interesting module to include. If not we could start something external (camunda svn?)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Currently it requires Java EE6 sinceI use a EJB3.1 singleton (no interface) to get the process engine. So we might need some work to either get a generic version that can also be used in Java EE5 or use maven profiles or whatever or just not support Java EE5&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I will try to clean this up and commit it over the weekend.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Go ahead, (ab) use my branch&amp;nbsp; &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;… in light of the 'seam', 'weld', 'solder' (sub project of weld/seam) we could call this 'activiti-glue'. Tom has some nice memories of a 'company' called gluelogic from several years ago&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;p.s. There is a &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-541" rel="nofollow noopener noreferrer"&gt;jira&lt;/A&gt;&lt;SPAN&gt; for this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jan 2011 23:15:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31786#M16437</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2011-01-26T23:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31787#M16438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Ronald,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;just some brief comments:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Does this mean you can use procesvariables in EL in a jsf page? or initially just in the java classes? (does not make it less cool) Yet, I also think of supporting something like a variables['….'] construction so &lt;A href="http://www.metawidget.org/" rel="nofollow noopener noreferrer"&gt;metawidget&lt;/A&gt; can be used (still needs integration with primefaces, not sure if that is difficult)&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Not yet (I think). I can inject process-variables into a bean but not yet use them in JSF (or anywhere else using UEL for that matter) because only @Named beans have an EL-Name. This is one item to work on. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The 'full' ejb resolver will still be needed afaik, since CDI cannot resolve remote beans.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Right, in CDI you need to tell the container how to resolve the remote EJB using @EJB(…)&amp;nbsp; and then bind it to sth., e.g. using a producer method. This is not yet what we want. (Although I often think that it is better to write 3 lines of type-safe Java Code instead of xml &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; But that is a matter of taste… ) So yes the 'full' EJB resolver is definitely needed. Even if it was supported, I don't think people want to depend on CDI&amp;nbsp; for doing this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Definitely. The core team just has to decide if this is an interesting module to include. If not we could start something external (camunda svn?)&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Yes I briefly talked to Bernd about this. We still need to decide but conceptually it is feasible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Currently it requires Java EE6 sinceI use a EJB3.1 singleton (no interface) to get the process engine. So we might need some work to either get a generic version that can also be used in Java EE5 or use maven profiles or whatever or just not support Java EE5&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Yes that would also be a "TBD". If the one singleton is the only place where EE6 is really required, than maybe it is possible to target EE5. Haven't thought about that yet. For me it was also a matter of trying out JBoss AS 6 with activiti etc… &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;daniel&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jan 2011 14:09:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31787#M16438</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2011-01-27T14:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31788#M16439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Not yet (I think). I can inject process-variables into a bean but not yet use them in JSF (or anywhere else using UEL for that matter) because only @Named beans have an EL-Name. This is one item to work on.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;For (CDI) beans yes, but it is not required to have @Named to be resolved in jsf el resolvers. You just need something to inject it into that 'scope' with a correct name. I have some small el resolver code that reads jsf message properties so you can use that in a class. The other way around would work as easily. I'll put this on my todo list. with a priority.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Right, in CDI you need to tell the container how to resolve the remote EJB using @EJB(…) and then bind it to sth., e.g. using a producer method. This is not yet what we want. (Although I often think that it is better to write 3 lines of type-safe Java Code instead of xml &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; But that is a matter of taste… ) So yes the 'full' EJB resolver is definitely needed. Even if it was supported, I don't think people want to depend on CDI for doing this.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Yep… no more xml hell… (unless e.g for business oriented edi messages) This is kind of how Jorams example worked with spring… just wrapping it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yes that would also be a "TBD". If the one singleton is the only place where EE6 is really required, than maybe it is possible to target EE5.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;CDI has the notion of application scoped and singleton as well. I just do not seem to be able to get it 'auto started' without e.g. a servletlistener when starting the server. Might be enough though if the first request triggers it (just some small delay then)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jan 2011 14:39:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31788#M16439</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2011-01-27T14:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31789#M16440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am the author of Metawidget, and I'm very excited to hear you are considering integrating it into Activiti! Please let me know if there is anything I can do to assist in the process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PrimeFaces integration is on our 'wish list' and should be straightforward. The source code for RichFacesWidgetBuilder or TomahawkWidgetBuilder should be a good starting point, as would the chapter on WidgetBuilders in the Reference Guide.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Richard.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jan 2011 22:15:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31789#M16440</guid>
      <dc:creator>kennardconsulti</dc:creator>
      <dc:date>2011-01-27T22:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31790#M16441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;:lol: I saw a similar response on the primefaces list by you but was not able to send a pm there. I already read on your site what needs to be done, so I&amp;nbsp; downloaded and will try if I feel better again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One thing I'm a little worried about is reading that with some components of icefaces metawidget does not play nice (even if the 'cause' might be something in icefaces)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In addition, the usecase might be a little different. We won't have a bean with getters/setters of differently typed fields but most likely a (hash) map with objects of different types, including ones that are beans with getters/setters. Would this pose an issue?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jan 2011 00:49:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31790#M16441</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2011-01-28T00:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31791#M16442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Ronald,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your response. In answer to your questions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Use of ICEfaces (or not) is entirely optional and configurable. We have lots of non-ICEfaces demos. But yes, ICEfaces probably doesn't play 100% nice with other component libraries, due principally to ICEfaces' unique (and very cool) 'Direct-to-DOM' technology. But such issues are outside of Metawidget's jurisdiction &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. No. Metawidget's 'back end' is controlled by a pluggable 'Inspector' interface which is designed to accomodate this (and many other) architectual preferences. For example see &lt;/SPAN&gt;&lt;A href="http://blog.kennardconsulting.com/2008/06/metawidget-and-namevalue-pairs.html" rel="nofollow noopener noreferrer"&gt;http://blog.kennardconsulting.com/2008/06/metawidget-and-namevalue-pairs.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Richard.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jan 2011 01:04:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31791#M16442</guid>
      <dc:creator>kennardconsulti</dc:creator>
      <dc:date>2011-01-28T01:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31792#M16443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your response &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;1. Use of ICEfaces (or not) is entirely optional and configurable. We have lots of non-ICEfaces demos. But yes, ICEfaces probably doesn't play 100% nice with other component libraries, due principally to ICEfaces' unique (and very cool) 'Direct-to-DOM' technology. But such issues are outside of Metawidget's jurisdiction &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Ok ,so these issues will most likely not arise with Primefaces. Good to know&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;2. No. Metawidget's 'back end' is controlled by a pluggable 'Inspector' interface which is designed to accomodate this (and many other) architectual preferences. For example see &lt;A href="http://kennardconsulting.blogspot.com/2008/06/metawidget-and-namevalue-pairs.html" rel="nofollow noopener noreferrer"&gt;http://kennardconsulting.blogspot.com/2008/06/metawidget-and-namevalue-pairs.html&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Great, thanks for the pointer. If you have any other interesting ones…. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jan 2011 01:12:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31792#M16443</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2011-01-28T01:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31793#M16444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&amp;gt; If you have any other interesting ones…. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sure! I have added a first version of PrimeFaces support into Metawidget (now in SVN) and put together a blog entry and sample application for you to download here: &lt;/SPAN&gt;&lt;A href="http://blog.kennardconsulting.com/2011/01/metawidget-primefaces-support.html" rel="nofollow noopener noreferrer"&gt;http://blog.kennardconsulting.com/2011/01/metawidget-primefaces-support.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let me know if there is anything further I can do to help with your integration.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Richard.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jan 2011 11:43:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31793#M16444</guid>
      <dc:creator>kennardconsulti</dc:creator>
      <dc:date>2011-01-28T11:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31794#M16445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just to let you know this work as now been released as part of Metawidget v1.10. I'd be most grateful if you could download it and confirm it works for you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Richard.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 10:21:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31794#M16445</guid>
      <dc:creator>kennardconsulti</dc:creator>
      <dc:date>2011-02-10T10:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31795#M16446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, With so many layers coming into play, what is the impact on performance? I am very keen on seeing how MetaWidgets/AngularJS component can be integrated with Alfresco platform to build applications. Has anyone experimented with this? There are several advantages to create a UI based on schema definition as opposed to having two separate parallel structures with redundancies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 16:44:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31795#M16446</guid>
      <dc:creator>ramprasad</dc:creator>
      <dc:date>2017-08-30T16:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti &amp; CDI</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31796#M16447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey &lt;A __default_attr="169833" __jive_macro_name="user" _jive_internal="true" data-id="169833" data-objecttype="3" data-type="person" href="https://community.alfresco.com/people/ramprasad" rel="nofollow noopener noreferrer"&gt;&lt;/A&gt;‌ - This post is really old. I'd be concerned that the content was out of date. Can you create a new topic?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2017 19:53:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-cdi/m-p/31796#M16447</guid>
      <dc:creator>kgastaldo</dc:creator>
      <dc:date>2017-08-31T19:53:14Z</dc:date>
    </item>
  </channel>
</rss>

