Hi all, I want to get historic data of finished processes. I have edited acitiviti-custom-content.xml in both webapps (activiti-rest,activiti-explorer) with new property: <blockcode> <bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration"> <property name="history" value="audit" /> .. </blockcode> I am working with MS-SQL database (set db.properties).
What am i doing wrong ? Why i dont see the variables in task-instances get historic Should we define the form-properties as variables ? When i create the form property i also enter a variable as the form propery id: <blockcode> <userTask id="Mission1" name="Mission1" activiti:assignee="kermit"> <extensionElements> <activiti:formProperty id="FP2" name="FP2" type="string" variable="FP2" required="true"/> </extensionElements> </userTask> </blockcode> I have read in the API that i need to add includeProcessVariables or includeTaskLocalVariables –> 15.8.12. Get historic task instances GET history/historic-task-instances. But when i run http://localhost:1248/activiti-rest/service/history/historic-task-instances?includeTaskLocalVariable... I also dont get variables.