Loading...

RE: Nintex and QuickApps 6.3

RE: Nintex and QuickApps 6.3

#7311
Anonymous
Anonymous
Participant

Hi John,

n

   Yes, you're right. Create a new System/Service using the Configuration Editor tool, reference the Nintex workflow service (http://YourServer/_vti_bin/nintexworkflow/workflow.asmx) then you can start a Nintex workflow as a custom action from qSIListForm.

n

This is how I have defined my custom action using teh web service method StartWorkflowOnListItem and launching a Nintex workflow called Nintex1000Validation on item ID=1

n

<Entity System="SystemSharePointWS" Service="ServiceNintex" Name="Nintex">
<Operation Method="StartWorkflowOnListItem" Name="StartWFOnListItem">
<Parameter Name="itemId" Type="System.Int32" Usage="In" Source="FixedValue" Value="1" />
<Parameter Name="listName" Type="System.String" Usage="In" Source="FixedValue" Value="DocNintex" />
<Parameter Name="workflowName" Type="System.String" Usage="In" Source="FixedValue" Value="Nintex1000Validation" />
<Parameter Name="associationData" Type="System.String" Usage="In" Source="FixedValue" />
</Operation>
</Entity>

n

The documentation for the Web Services applies to Nintex workflow web service too. Also I checked teh NIntex docs for more details about the parameters and operations.

n

Please let me know if you have any questions.

n

n