<?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 Activiti Engine Integration with Spring MVC in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171942#M125176</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to design a workflow base web application and the UI will be designed using spring mvc frame work and activiti engine as a backed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have few doubts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Will the activiti process engine start from the spring context file or we should start it using a controller with load on start up process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. how will be the process get deployed ? Do we need to invoke the rest api for deployment of the bar or process xml files. If yes can you please share the rest api method which will be used.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. If a custom form is used for a user task how will the form fields be mapped to process variables and how will it interact with the activiti tables at run time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please suggest.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Feb 2014 03:14:38 GMT</pubDate>
    <dc:creator>suoza</dc:creator>
    <dc:date>2014-02-06T03:14:38Z</dc:date>
    <item>
      <title>Activiti Engine Integration with Spring MVC</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171942#M125176</link>
      <description>Hi,I want to design a workflow base web application and the UI will be designed using spring mvc frame work and activiti engine as a backed.I have few doubts.1. Will the activiti process engine start from the spring context file or we should start it using a controller with load on start up process.</description>
      <pubDate>Thu, 06 Feb 2014 03:14:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171942#M125176</guid>
      <dc:creator>suoza</dc:creator>
      <dc:date>2014-02-06T03:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Engine Integration with Spring MVC</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171943#M125177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;2. how will be the process get deployed ? Do we need to invoke the rest api for deployment of the bar or process xml files. If yes can you please share the rest api method which will be used.&lt;/BLOCKQUOTE&gt;&lt;A href="http://www.activiti.org/userguide/#N12F2D" rel="nofollow noopener noreferrer"&gt;http://www.activiti.org/userguide/#N12F2D&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;in spring config you can use auto deployment too.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;3. If a custom form is used for a user task how will the form fields be mapped to process variables and how will it interact with the activiti tables at run time.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;A href="http://www.activiti.org/userguide/#forms" rel="nofollow noopener noreferrer"&gt;http://www.activiti.org/userguide/#forms&lt;/A&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 06:46:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171943#M125177</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2014-02-06T06:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Engine Integration with Spring MVC</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171944#M125178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;1. Will the activiti process engine start from the spring context file or we should start it using a controller with load on start up process.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;You can have a look on engine initialization from ProcessEngines class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;nbsp; protected static void initProcessEngineFromSpringResource(URL resource) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; try {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Class&amp;lt; ? &amp;gt; springConfigurationHelperClass = ReflectUtil.loadClass("org.activiti.spring.SpringConfigurationHelper");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Method method = springConfigurationHelperClass.getMethod("buildProcessEngine", new Class&amp;lt;?&amp;gt;[]{URL.class});&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProcessEngine processEngine = (ProcessEngine) method.invoke(null, new Object[]{resource});&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String processEngineName = processEngine.getName();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProcessEngineInfo processEngineInfo = new ProcessEngineInfoImpl(processEngineName, resource.toString(), null);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; processEngineInfosByName.put(processEngineName, processEngineInfo);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; processEngineInfosByResourceUrl.put(resource.toString(), processEngineInfo);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } catch (Exception e) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; throw new ActivitiException("couldn't initialize process engine from spring configuration resource "+resource.toString()+": "+e.getMessage(), e);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&lt;/CODE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 06:53:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171944#M125178</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2014-02-06T06:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Engine Integration with Spring MVC</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171945#M125179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Martin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 07:44:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-engine-integration-with-spring-mvc/m-p/171945#M125179</guid>
      <dc:creator>suoza</dc:creator>
      <dc:date>2014-02-06T07:44:38Z</dc:date>
    </item>
  </channel>
</rss>

