2 Replies Latest reply on Jan 10, 2014 3:29 AM by kannan123

    to complete the user task in jbpm without verification

    kannan123

      Hi all

       

      I am using jbpm 5.4. I have a requirement in my project, The user task should complete without verification. That means i want to auto complete the user task. The user not need to verify the task. How can i implement this?? is it possible in jbpm 5.4???

       

      Regards

      kannan

        • 1. Re: to complete the user task in jbpm without verification
          swiderski.maciej

          what you mean without verification? Completion of a user task is about to provide some output data and if the data can be provided automatically then you don't need to use user task but service task instead.

           

          HTH

          • 2. Re: to complete the user task in jbpm without verification
            kannan123

            Hi

             

            I am using remote jbpm workflow. With the service task how can i send the form parameters to my web application.

            In my web application i am using the code

            Map<String, String> formParameters = (Map<String, String>)workflowContext.get("CONTEXT_JBPM_TASK_FORM_PARAMETERS");

            formParameters.get("outcome");

            formParameters.get("Explanation");

            without user task form the key "CONTEXT_JBPM_TASK_FORM_PARAMETERS" will not appear in the workflowContext. When the workflow starts all the parameters are null. After the user task only i got the parameters like outcome and Explanation in my web application.

             

            Regards

            kannan