Alfresco Archive
cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

How to create WADL file for Web Script ?

Hi, Is there any way to create WADL file for Alfresco Web Scripts ?WADL is an XML file which defines how an REST based Web Service behaves and instructs clients as to how to interact with the service.WADL can be thought of as the REST equivalent of W...

Asynchronous tasks and handling exceptions

Hi,Could anyone shed some light on the questions raised in the following thread?http://forums.activiti.org/en/viewtopic.php?f=6&t=3199More specifically in my case, how do you replay the async task that threw the exception?Thanks

Alfresco installation with mysql database

Hi,I am trying to install Alfresco 4.0.1 Enterprise with the the following command :‍alfresco-enterprise-4.0.1-installer-linux-x64.bin –mode unattended –alfresco_admin_password admin –disable-components postgres –jdbc_url 'jdbc:mysql://192.168.0.83/a...

Very Simple Process with Timer Start Event throws Exception

I am seeing the OptimisticLockingException that plagues my use of timers and boundary events.While trying to use a timer start event, I am getting the OptimisticLockingException.With this very simple process, I am just trying to start the process at ...

ct1 by Champ in-the-making
  • 1102 Views
  • 10 replies
  • 0 kudos

ProcessModel

Hello!Can somebody tell me, how I can quickly implement the ProcessModel like plotted in the Activiti-Engine during a runningprocess in an extern aplication? Thanks,Conrad

conrad1 by Champ in-the-making
  • 29 Views
  • 1 replies
  • 0 kudos

Trying to figure which processDefinition a job will execute

Hi, can someone tell me where I can get which process definition a job will execute.Here is what I do.I create a JobQuery with the managementServiceList<Job> list = managementService.createJobQuery().orderByJobDuedate().asc().list();But when I look a...

rgareau by Champ in-the-making
  • 33 Views
  • 1 replies
  • 0 kudos

Lucene query problem (too much results and lacking results)

My goal is to schedule an action for every file in a given directory(recursively). I started with a simple action just printing out file name to log and implementing cron + lucene query configuration in xml as stated here http://wiki.alfresco.com/wik...

List<HistoricProcessInstance> not serializable?

Hi. Is there a reason why a List of HistoricProcessInstances List<HistoricProcessInstance> ls = processEngine.getHistoryService().createHistoricProcessInstanceQuery().list(); ‍is not serializable even if a list of List<ProcessInstance> ls = processE...

cweber by Champ in-the-making
  • 98 Views
  • 6 replies
  • 0 kudos

Split sementics with multi-instance

Hi Experts,I have a use-case where I would like to pass some distinct process-variable/value to "each" instance in the multi-intance.For example:- we collect all resources targeted in this process instance- each multi-instance call-activiti handled "...

How to catch general runtime exception of process executing?

We have integrated Activiti inside our project. Currently I'm standing up a ProcessEngine in code and call the engine directly to start ProcessInstances. My question is, generally speaking, what is the proper way to catch and handle exceptions that o...