Posts

Showing posts with the label Nintex

Nintex Cloud vs Power Platform Comparison

Every technology comes with its own pros and cons and every business has its own justifications to adopt any specific tool. Microsoft build a huge market in cloud platforms specially by introducing Power Platform which includes PowerApps, Power Automate and Power BI. A combination of all three gives a boost to your business processes. On the other hand, Nintex is also successful in many ways to transform its customers from on-premise version of Nintex Forms and Nintex Workflows to Nintex Cloud. Although Nintex Cloud has some limitations as compared to on-premises versions, however it still provides some new features that keeps the customer stick with their tools. Here is a compact and brief comparison of both, focusing on the presentations and automations. 

How to Approve or Reject a Nintex Task using Nintex Web Service API ProcessTaskResponse2 method

This was really challenging however at the end we were able to achieve this. I would like to mention my manager Mr. Yamen Hmidan for his extra ordinary thinking level that helped me to get this done. Problem Statement: We want to approve or reject Nintex Tasks using its web service API and using its ProcessTaskResponse2 method in C# by creating another web service. The C# web API will call the Nintex web API and approve or reject the task. Solution: I have created a new Web Service API Project in Visual Studio 2019 and added the Nintex service reference in my project. All the operations provided by Nintex are now available in my project under Connected Services. I called the reference as  NintexServiceReference in my code. Here is my C# code of Approve class.  Note: This code might not work 100% for you as this is just a direct copy paste and have dependencies on my other classes. This is just to give you the idea of my Get method. using ...