<?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: Wait state for user services in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126685#M89115</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It seems that you want to have your custom-node actually end up as multiple BPMN2.0-elements in the xml (a gateway, a usertaks and a recieve-task). I'm quite sure this indeed requires some custom coding in the designer to get this working… OR perhaps you can fix it by using a sub-process (containing the building-blocks you need) that's being generated by the designer instead of a service-task?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Apr 2013 08:41:10 GMT</pubDate>
    <dc:creator>frederikherema1</dc:creator>
    <dc:date>2013-04-04T08:41:10Z</dc:date>
    <item>
      <title>Wait state for user services</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126682#M89112</link>
      <description>If I have a custom user service (java delegate), and I create a task in it, is there a way for me to go into a wait state until that task is completed?We would also like to do the same thing with invoking another workflow from a user service (similar to whatever callActiviti does). Can someone point</description>
      <pubDate>Wed, 03 Apr 2013 15:07:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126682#M89112</guid>
      <dc:creator>groopk</dc:creator>
      <dc:date>2013-04-03T15:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Wait state for user services</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126683#M89113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So you create a Task (by using TaskService.createTask)? In that case, there is no connection between the task and the process, so there is no way of letting the process "wait" unless you put an explicit wait-state after the process (e.g.. receive-task) and plug in some kind of mechanism that allows listening to adhoc-tasks to make the trigger the workflow again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Why can't you model the UserTask in the process and, if it's not needed, let a gateway navigate around the task (so make flow to task conditional based on a variable set in the service-task)?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Apr 2013 15:17:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126683#M89113</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-04-03T15:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Wait state for user services</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126684#M89114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the reply.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Our real goal is to have our own box in the eclipse modeling tool (i.e. extending AbstractCustomServiceTask) that is a userTask or a callActiviti event.&amp;nbsp; We were thinking of just wrapping the functionality of these events into a custom java service, but it sounds like that is probably not the correct approach.&amp;nbsp; Perhaps we should try to write some custom code in the modeler that would allow us to do this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Apr 2013 15:35:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126684#M89114</guid>
      <dc:creator>groopk</dc:creator>
      <dc:date>2013-04-03T15:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Wait state for user services</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126685#M89115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It seems that you want to have your custom-node actually end up as multiple BPMN2.0-elements in the xml (a gateway, a usertaks and a recieve-task). I'm quite sure this indeed requires some custom coding in the designer to get this working… OR perhaps you can fix it by using a sub-process (containing the building-blocks you need) that's being generated by the designer instead of a service-task?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Apr 2013 08:41:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126685#M89115</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-04-04T08:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Wait state for user services</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126686#M89116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'd like to have a userTask predefined with certain listeners, form properties and configuration that is available on the palette. For example, a "Marketing Approval" task that we simply drag and drop into the designer and 90% of the configuration we need is already in place. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A sub-process or actually a callActiviti would be great too. But we would still like a custom box for a specific callActiviti with pre-configured input parameters/listeners/etc that we can just drag from the palette.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Apr 2013 15:32:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/wait-state-for-user-services/m-p/126686#M89116</guid>
      <dc:creator>groopk</dc:creator>
      <dc:date>2013-04-04T15:32:38Z</dc:date>
    </item>
  </channel>
</rss>

