Hello I am using activiti as workflow and jsp as front end.I have a process file having user tasks and associated forms to complete the tasks.
….
<userTask name="Search Document on First Name, Last Name, SSN" id="searchdoc_on_fn_ln"
activiti:formKey="com/idika/galaxy/deployment/resources/forms/usecaseindexer/search_document.jsp">
….
Now I am able to run this process but my problem is if i get the form for the above usertask using out.println(formService.getRenderedTaskForm(task.getId()).toString());it works fine and prints the values of the process variables too which are used within the form but will not parse the server side code (ex. jsp scriptlets).And if I copy the form in the server and use pageContext.include("/"+formService.getTaskFormData(task.getId()).getFormKey());the server side code is parsed but does not print values of process variables.What is the right way of finding a solution for this.Please help.best regardsparulThe full source code is attached. [attachment=0]activiti_web_jsp.zip[/attachment]