<?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 Workflow and class management in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131009#M92033</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;BR /&gt;&lt;SPAN&gt;As it currently stands, the rest package and the explorer package are separate wars, each relying on the common database. This causes issues when adding workflows with custom java classes. The reason this is an issue is that the jar files have to be added to both the rest and explorers /WEB-INF/lib directories (yes I could add it to the tomcat lib, but that may cause me other issues, and am not keen to go down that path).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As far as I can see, a BAR file only allow me to package multiple bpmn files together, but not the java they rely on (my custom service classes). I realise that storing java in a database for loading into the respective jvms isn't really ideal, but I don't see another solution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you guys have any thoughts on this or plans to make this easier? Being able to dynamically deploy bpmns with their custom code would be nice. Its a pain having to stop and start tomcat to add/remove extra jar files.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please correct me if I've missed something.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 May 2013 06:59:17 GMT</pubDate>
    <dc:creator>pedwards</dc:creator>
    <dc:date>2013-05-31T06:59:17Z</dc:date>
    <item>
      <title>Workflow and class management</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131009#M92033</link>
      <description>Hi,As it currently stands, the rest package and the explorer package are separate wars, each relying on the common database. This causes issues when adding workflows with custom java classes. The reason this is an issue is that the jar files have to be added to both the rest and explorers /WEB-INF/l</description>
      <pubDate>Fri, 31 May 2013 06:59:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131009#M92033</guid>
      <dc:creator>pedwards</dc:creator>
      <dc:date>2013-05-31T06:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow and class management</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131010#M92034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, you're right, we currently don't have such support.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Back in the jBPM3 days, we indeed allowed serializing java code to the database. But it causes subtle bugs and was regarded as not a good practice.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another solution would be to merge the explorer and rest webapp into one war, sharing the same classpath.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2013 12:25:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131010#M92034</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-05-31T12:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow and class management</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131011#M92035</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;BR /&gt;&lt;SPAN&gt;I'm developing an Activiti-based and I've run into the same kind of class-loading issues like those you described. In order to avoid them, I've adopted the following "doctrine":&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;* Process artifacts (.bar/.bpmn20.xml) never pack java classes&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* Service tasks always use the "actitivi:expression" (a delegate expression would work fine). Something like that: activiti:expression="${scriptRunner.execute('myscript.groovy',execution)}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* Form and process variables only use primitive data types. Anything else type is JSONified before being put into the process context.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* Service task scripts always access backend systems through REST and/or SOAP services, preferably by means of an ESB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This doctrine works for me because I use Activiti Explorer as a monitoring/admin tool, while all user interaction occurs in a custom-made front-end. Other benefits from this approach are:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;* Forms and scripts can be changed without any change in the process itself, without any restart&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* Form, script&amp;nbsp; and process development can be assigned to different team members, and each one can push their changes independently (within certain limits, of course) from each other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You may ask why didn't I use the script task for this, but I did not find a way to externalize scripts with this kind of activity - but I admit I did not try very much.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jun 2013 16:55:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131011#M92035</guid>
      <dc:creator>pmsevestre</dc:creator>
      <dc:date>2013-06-15T16:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow and class management</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131012#M92036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for posting this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Script externalizing is actually something I've been playing with recently. The only thing is that the Javascript engine in the JDK is so dumbed down it's not fun anymore …&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 11:56:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131012#M92036</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-06-17T11:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow and class management</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131013#M92037</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;In my project I need explorer and rest services with full functionality. And I like the idea of merging explorer and rest wars. But how to do it correctly?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It is not clear to me how to merge WEB-INF directories..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What did I do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) I copied WEB-INF/classes/org/activiti/rest of rest into WEB-INF/classes/org/activiti/ of explorer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) I added these lines from rest web.xml to explorer's web.xml:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;listener&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;listener-class&amp;gt;org.activiti.rest.servlet.ActivitiServletContextListener&amp;lt;/listener-class&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/listener&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3) I merged WEB-INF/lib directories&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then I started tomcat&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Acc actions I need in explorer worked correctly, but when I try to send rest request to explorer I get &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{"errorMessage":"No router defined","statusCode":500}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and in catalina.out:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.08.2013 10:20:49 org.restlet.resource.UniformResource doCatch&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WARNING: Exception or error caught in resource&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.activiti.engine.ActivitiException: No router defined&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.activiti.rest.api.DefaultResource.execute(DefaultResource.java:38)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at java.lang.reflect.Method.invoke(Method.java:597)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.resource.ServerResource.doHandle(ServerResource.java:452)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.resource.ServerResource.get(ServerResource.java:648)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.resource.ServerResource.doHandle(ServerResource.java:530)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.resource.ServerResource.doNegotiatedHandle(ServerResource.java:590)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.resource.ServerResource.doConditionalHandle(ServerResource.java:302)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.resource.ServerResource.handle(ServerResource.java:849)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.resource.Finder.handle(Finder.java:513)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Router.doHandle(Router.java:500)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Router.handle(Router.java:740)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.engine.application.StatusFilter.doHandle(StatusFilter.java:155)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.engine.ChainHelper.handle(ChainHelper.java:114)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.engine.application.ApplicationHelper.handle(ApplicationHelper.java:75)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.Application.handle(Application.java:391)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Router.doHandle(Router.java:500)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Router.handle(Router.java:740)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Router.doHandle(Router.java:500)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Router.handle(Router.java:740)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.doHandle(Filter.java:159)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.routing.Filter.handle(Filter.java:206)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.engine.ChainHelper.handle(ChainHelper.java:114)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.Component.handle(Component.java:391)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.Server.handle(Server.java:491)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.engine.ServerHelper.handle(ServerHelper.java:74)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.engine.http.HttpServerHelper.handle(HttpServerHelper.java:153)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.restlet.ext.servlet.ServerServlet.service(ServerServlet.java:1031)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.activiti.explorer.filter.ExplorerFilter.doFilter(ExplorerFilter.java:44)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1023)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; at java.lang.Thread.run(Thread.java:662)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;then i changed &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;servlet&amp;gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;servlet-name&amp;gt;RestletServlet&amp;lt;/servlet-name&amp;gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;servlet-class&amp;gt;org.restlet.ext.servlet.ServerServlet&amp;lt;/servlet-class&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;init-param&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– Application class name –&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;param-name&amp;gt;org.restlet.application&amp;lt;/param-name&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;param-value&amp;gt;org.activiti.explorer.rest.application.ExplorerRestApplication&amp;lt;/param-value&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/init-param&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/servlet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;in explorer web.xml&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;to &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;servlet&amp;gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;servlet-name&amp;gt;RestletServlet&amp;lt;/servlet-name&amp;gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;servlet-class&amp;gt;org.restlet.ext.servlet.ServerServlet&amp;lt;/servlet-class&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;init-param&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– Application class name –&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;param-name&amp;gt;org.restlet.application&amp;lt;/param-name&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;param-value&amp;gt;org.activiti.rest.application.ActivitiRestServicesApplication&amp;lt;/param-value&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/init-param&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/servlet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(from rest web.xml)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So I could send rest requests to explorer, start processes, work with user tasks from explorer's UI..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But Process diagrams were not displayed in UI, I had some troubles in getting a list of tasks via rest.. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What's the difference betwen org.activiti.explorer.rest.application.ExplorerRestApplication and org.activiti.rest.application.ActivitiRestServicesApplication?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What should I do to correct my merged war?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Aug 2013 07:00:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131013#M92037</guid>
      <dc:creator>perpetuum_mobil</dc:creator>
      <dc:date>2013-08-23T07:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow and class management</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131014#M92038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;First please create your own post thread for new questions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You should combine the ExplorerRestApplication and ActivitiRestServicesApplication entries into one Application class. Did you also include the javascript folders to display models?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Aug 2013 08:47:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131014#M92038</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2013-08-23T08:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow and class management</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131015#M92039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Adding on top of the main question for this thread.. Is there any update since then ? Does 5.21 release support adding bmpns and corresponding Java Services (or JARs) dynamically ? I understand that the jars have to be deployed in lib of Activiti-rest if i have to use rest api. But i am looking at possibility of having one activiti-Engine which supports dynamic addition of workflows and thus avoiding accumulating code at one place.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2016 18:56:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/workflow-and-class-management/m-p/131015#M92039</guid>
      <dc:creator>kandepiprudhvi</dc:creator>
      <dc:date>2016-08-11T18:56:57Z</dc:date>
    </item>
  </channel>
</rss>

