Nintex Webservice Approve Flexi Task

  • 19 October 2016
  • 1 reply
  • 8 views

Hi,

I am using Nintex webservice in an asp.net application. I am able to successfully start and terminate the workflows. But I am having an issue when I try to approve a Flexi Task from code. I know the issue is with the Authentication. Please find the below code for reference. I tried using the admin credentials as well, but no luck.

 

NintexApprovalService.ProcessTaskResponseResult? ob = null;

//bool ob;

string taskList = taskListName;

{

NintexApprovalService.NintexWorkflowWS obj = new NintexApprovalService.NintexWorkflowWS();

obj.UseDefaultCredentials = true;

obj.Credentials = cr;

ob = obj.ProcessFlexiTaskResponse2(approvalComments, Approvaloutcome, TaskId, taskList);

}

return ob.Value;

 

Could you able to assist me to fix this issue.

 

Thanks,

Prashanth


1 reply

Could any one please help me to resolve the issue. I am trying to complete the Flexi Task using Nintex Web Service and calling ProcessFlexiTaskResponse2, but I am having the issue and web service is returned with an exception. I tried passing the network credentials as well as used Default credentials but no luck.

Thanks in Advance!!!

Reply