Interactive workshop: Automated DocGen for Manufacturing Ops
Access resources, discussions, and tips to design and manage workflows with Nintex Automation K2.
Recently active
A double response is returned in the rest service called in the workflow application run in the K2 five core (5.6) application. This causes the response returned a second time to return empty and we get an error. Can you help with the solution?
Hello -  I would write about a list workflow that appears to be requested often. The workflow needs to send a reminder to the document owner when the document review date is 90, 30, 15 days away from a Review Date (giving them time to review and update the document).This document library has the following columns:Review Date (Date and Time: Date Only) - mandatory Document Owner (Person or Group) - mandatoryI tried many different ways but I have no luck. Can I build Nintex reminder workflow with SharePoint document library? Any help is appreciated.Â
I looked up this topic and found the items outlined below on how to time/date stamp comments and then have them move above the comments section after each entry.  I have created an "Add Comment" workflow on the list which is set to start manually and appears on the item context menu.It has one variable which is shown on the start page of the workflow and is required.The workflow does this:Build String = Current date and time, new line, initiator display name, new line, comments added on start form, new line, item property comments (so new comments are timestamped and added above previous comments). Stored into variable called vMTextComments Update Item = set comments field on current item = vMTextComments  this will be possible to do in the form also if you wanted it to be done in there. However, I can not it to work. Would anyone be willing to send my screenshots of the step by step process to make this work?
HiI am getting the following error:"SmartObject property SubcontractorID is a required property for selected method Create. Value must be set."Yet after clicking "OK" the method has successfully run and the SubcontractorID property has been entered into its needed field.Does anyone know why I am getting the error window despite the method running without issue? The rule running this method is:On View when Button is ClickedThen on View execute Create method for all items that have been Added This system is currently on K25, but was originally updated from K2 blackpearl.
We use a Digital Signature Control in our forms. It works fine with authenticated users, but doesn't work in anonymous form on mobile devices. Is there any solution for this? Or maybe there is another control for digital signature (draw on a canvas via mouse and touch) for anonymous?Â
Hello, I just finished working on a form, but I would like the originator to receive the link of the form submitted with the answers... I am not sure how to do it. I tried to add the display view as an attachment but did not know how to do it with the ID of that specific form nor where to get the display view from the workflow.
I have .Net Framework 4.8 console app which opens connection to WorkflowManagementServer fine, but same line of code in a .NET6 console app throws exception Method not found: System.AppDomainManager.Why?  Where running K2 Five 5.3. Code in 4.8 console app: internal class Program { static void Main(string[] args) { var k2ConnectionString = "Host=localhost;Port=5555;Integrated=True;IsPrimaryLogin=True;Authenticate=True;EncryptedPassword=False;CachePassword=True"; SourceCode.Workflow.Management.WorkflowManagementServer wfmServer = new SourceCode.Workflow.Management.WorkflowManagementServer(); wfmServer.CreateConnection(); wfmServer.Connection.Open(k2ConnectionString); // works just fine.. //Search error profile and we’ll get the list of errors int errorProfileID = wfmServer.GetErrorProfile("All").ID; SourceCode.Workflow.Management.ErrorLogs errorLogs = wfmServer.GetErrorLogs(errorProfileID);  Code in .NET6 console app:  var k2ConnectionString = "Host=localhost;Port=5555;Integrated=True;Is
I have created a REST api service broker in K2 five. One of the api returns an xml string. Is there any way to deserialize it in K2 five and get the tags and the values which I am interested in? I tried looking for ways in K2 five but could not understand if we need to create a customized smartobject and somehow use it for deserialization. But even then how will it be dynamically generated? Also, if I have a view containing - let say, name and number. Given an xml schema, can it be serialized into xml string and use in the body of PUT api.
Might be I am missing very small thing. But scenario is not working. Below highlighted is the custom control. With Category Display  I dragged two controls on item view as below.  What I want to achieve is.On button click rule. I am setting custom control properties and just displaying values in message box.    In the message box, its displaying old value not the new one. script files also attached if anyone can help please.
I'm thinking of getting a Keychron K2 v2. I have 2 computers I'd want to connect it to: a Macbook (for work) and a Chromebook (for personal use).Does anyone have experience using the K2 (or other Keychron) with multiple operating systems? I just want to make sure this isn't going to be a pain before I buy.Thank you!
Hi Can someone please advise if it is possible to use AD SMOs to update user properties', custom attributes? thanks
We just upgraded K2 from version 4.6.6 to 4.6.11 on our environments. There are two K2 servers in the environment with a load balancer setup. After the upgrade, some of the functions from K2 workflow API are throwing exceptions."Error","EnvironmentServer","15100","Generic","SourceCode.Workflow.Runtime.Management [OpenConnection [string[] names]]","15100 Error occurred, ERROR: Unable to connect to loadbal-k2-abc.com on port 5252. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. ","anonymous","0.0.0.0" "Error","EnvironmentServer","15100","Generic","SourceCode.Workflow.Runtime.Management [SendArchiveX [string[] names]]","15100 Error occurred, ERROR: Unable to connect to loadbal-k2-abc.com on port 5252. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected
hi,I have a REST service which needs an json array as an input. Like:{ "array" : [ { "value1" : "abc", "value2": 1.00 }, { "value1" : "def", "value2": 2.00 } ]}The SmartObjects method gets an Memo input parameter (requestarray). I think I have to expose this input parameter as a list with the serialize list function of the requestarray.I know how to deserialize response values, but I couldn't figure out how to do it on the input side. Is there a tutorial somewhere?Â
Hi, I've created a Endpoints Webservice instance pointing to a wsdl and can successfully connect. I've also created a basic SmartObject in order to test the service. However, when I try execute the SmartObject method, I get a HTTP "417 Expectation Failed" error straight away. Having done a little reading, I tried to amend the web config so as not to send the Expect: 100-Continue header, but this has seemed to make no difference. Has anyone else run into this issue before? Any ideas?
when Rest API smartObject executed, in response it is returning back blank values. and the response code is 0. Â I have also tried with openweather API it shows same result. Â PFA screen shot. Â When I tested Rest API and the JSON descriptor document also in POSTMAN client, Response code is 200. test is successful. Â but not able to understand from k2 why it does not returning expected result. Guys, Kindly let me know how to resolve it. I will really greatfull for your technical help.
We have created a Swagger (file attached) Rest Service instance with Smart Objects, however on a view when running Serialize then GetData method the HTTP response code this is coming back as error 415. In the service instance I have now added in the default HTTP response headers the below so this knows that this is JSON: {"$type": "SourceCode.SmartObjects.Services.Endpoints.Common.HttpHeader[], SourceCode.SmartObjects.Services.Endpoints.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null", "$values": [ { "$type": "SourceCode.SmartObjects.Services.Endpoints.Common.HttpHeader, SourceCode.SmartObjects.Services.Endpoints.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null", "Name": "Accept", "Value": "application/json" }, {"$type": "SourceCode.SmartObjects.Services.Endpoints.Common.HttpHeader, SourceCode.SmartObjects.Services.Endpoints.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null","Name": "Content-Type","Value": "application/json"} ]} However this then
Hi All,One of the users in Prod is not getting task assigned to them, when they try to open application getting the below errorException of type 'System.Web.HttpUnhandledException' was thrown.The K2:DomainUsername could not be found. But the same user is able to access the application on DEV environment. What could be the reason?Attached screen shot of error.Â
hello, how I can show the (originator/Created by) in the worklist Control and i can extend worklist (add another column ) Â
If i run listview using runtime url it is showing total number of page as below -  When i used same view as popup in form total number of page is not displaying on view, it is going below. I am using Lithium theme in the form. I tried to add style to move total count next to 1 as shown in image 1 but not success.  If anyone is having idea on it, please let me know. Thanks in advance.
Does anyone know how to autofit a button size based on text in the button (or wrap button text) and the column around it? I have buttons on my form, whose text changes based on the task and it keeps cutting off half of it. Furthermore, on differing computers the buttons sometimes get half cut off based on screen size.  Any help would greatly be appreciated.
Hi All,I'm integrating with a Web Service provided by a 3d party and I don't have control over the web service.They provided a swagger file and an extract of the swagger for the method in question is below as an example.There are some optional fields but the Web Service has a requirement that the field needs to be specified with a null value.When I don't specify a value for one of the fields from the K2 smartobject (or even pass scnull), K2 does not include the property in the payload instead of specifying it as null, see below.Is there a way I can force K2 to specify the property in the JSON payload with a null value rather than leaving it out? Swagger: "AddWorkflowStepV2Request": { "title": "AddWorkflowStepV2Request", "description": "#### Add a step to the Workflow request.", "type": "object", "properties": { "ActionField": { "description": "#### Is the action taken by a user in a workflow on this step.`", "type": "integer", "format": "int32", "enum": [ "0", "1", "2" ] }, "CellField"
Hi AllI am unable to update user properties with DynamicADSO. I receive an error below. All other read and getuser method seems to work fine without any issues.  Can someone please assist? @hoshy @OlivierC  ThanksÂ
I have a workflow (K2 Five 5.3 with FixPack 03). I have an application where user can start a K2 workflow). After applying the Fix Pack, I see this error"The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel."We verify that K2 server allows TLS1.2Here is my code var URL = "https://s....";HttpWebRequest request = WebRequest.Create(URL) as HttpWebRequest;ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls | (SecurityProtocolType)768 | (SecurityProtocolType)3072;ServicePointManager.Expect100Continue = true;ServicePointManager.DefaultConnectionLimit = 9999;// get responsevar response = request.GetResponse();....Thanks in advance.
K2 Five 5.2 Designer We are currently in the midle of building a very complex workflow with several steps. After many successfull deployments, we are now getting this error which prevents deployment. The error message, as always, is quite opaque. Any ideas on what the issue is? What is systemName and why is it null? How can we correct?Â
Hi, i created and deployed custom control with one property MaxValue. <Prop ID="MaxValue" friendlyname="MaxValue" type="string" category="Detail" refreshdisplay="true" mappable="true"><Value>100</Value></Prop> how can i update that value from javascript so that after updating i can see that value from any k2 rule.  i have setproperty function in js but its not working. (after updating showing old value in k2 rule) setProperty: function (objInfo) {//console.log(objInfo);if (objInfo.property == "Style") {CustomControls.Guage.setStyles(null, objInfo.Value, $('#' + objInfo.CurrentControlID));}},Â
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.