I have integrated alfresco with custom application and exposed specific user task list using web service. now i want if user in custom application clicks on particular task then he should be able to edit that task and complete the workflow or pass it to the next step of workflow. Or there is any other method by which user can complete his task remotely without login into alfresco?
There is an OOTB webscript to end particular task workflow. classpath:alfresco/templates/webscripts/org/alfresco/repository/workflow/end-task.post.desc.xml
You can call this webscript by making a REST call to perform necessary transition on workflow.
Thanks for your reply. I want if some task appear in tasklist page of my custom application which is integrated with alfresco then that person should have the option for rejection, approval and to end the task. How this functionality can be achieved as a single function.