Web Services API
Overview
Most runtime and design time workflow operations can be operated via the web services API, such as:
Retrieving requests and action data and statuses
Launching new requests and updating request data
Completing workflow actions
Managing users, groups, participants, and delegations
Importing and exporting process definitions.
For more flexibility, all of the API web methods can be called by using POST, GET, or SOAP.
The authentication method is HTTP basic (over HTTPS) or can be customized according to your requirements (SSO, token, etc.) by using your own custom .NET HTTP authentication module.
Impersonation and delegation mode is also supported on selected web methods (e.g. completing an action on behalf of a WorkflowGen user).
API methods
The API web methods are located in http://localhost/wfgen/ws/processesruntime.asmx
. See the WorkflowGen Web Services API Reference Guide for more information.
WorkflowContext
The WorkflowGen web services API uses the WorkflowContext data structure in some important web methods such as:
CompleteActivityInstance
GetActivityInstanceContext
StartProcess
WorkflowContext is an XML data structure used to exchange parameters with WorkflowGen. The XML data structure is based on ADO.NET DataSet object (serialized in XML). As such, the structure is similar to database tables and records.
📌 XML ADO.NET DataSet context example
Nodes
<NewDataSet>
node
<NewDataSet>
nodeThe <NewDataSet>
node is a Dataset object that contains a set of parameters (parameter nodes) and one session information (session node).
<Parameter>
node
<Parameter>
nodeThe <Parameter>
node contains information about the parameter to exchange with WorkflowGen web method:
Node | Description |
| Name of the parameter defined in the workflow action |
| Possible values:
|
| Possible values:
|
| Text value of the parameter |
| Numeric value of the parameter |
| Datetime value of the parameter in the format |
| File name |
| File description |
| File size in bytes |
| Date of last modification to the file in the format |
| File MIME type |
| Original file path (for information only) |
| File path that WorkflowGen uses to retrieve the file |
WorkflowContext creation with WorkflowGen.My
To simplify WorkflowContext creation and modification, you can use WorkflowGen.My and its WorkflowGen.My.Data.ContextParameters
class:
For more detailed examples, see WorkflowContext creation with WorkflowGen.My.
Invoking a WorkflowGen API using .NET code
Before invoking a WorkflowGen API using .NET code, first verify that you have access to the APIs by doing the following:
Open a new web browser.
Connect to your web service with your WorkflowGen URL:
http://yourserver:port/wfgen/ws/ProcessesRuntime.asmx
.Authenticate with your WorkflowGen account.
The above URL will provide you with a list of available web service APIs.
Use the sample code below to invoke a web service API from within your code. This example demonstrates how to call the CompleteActivityInstance
API, which is used to complete an open action.
Prior to implementing the code below, do the following:
Open your existing web project (or create a new web project) for which you would like to implement the API web service call.
Add a web reference to your website by performing the following steps:
In Visual Studio, choose Website > Add Web Reference...
Enter the web service URL (
http://yourserver:port/wfgen/ws/ProcessesRuntime.asmx
) and click Add Reference. You will likely be prompted by the server to authenticate your request. Enter the appropriate username, password, and domain (if necessary). Once submitted, you should see the same screen as when you verified your access to the APIs, with a list of available APIs.You will be prompted to give the web reference a name. The sample below uses the web reference name
WFG_APIs
.Click Add reference. You should now see the reference within your Solution Explorer.
Add the following code, or incorporate the code into your existing code as required:
C#
📌 Sample code to complete a request action
StartProcess
StartProcess
StartProcess
lets you launch a new request with context parameters from an external application via the web service API using SOAP. This web method lets you launch a new process from another application using HTTP parameters.
Method definition
public int StartProcess(string processName, bool test, string context)
: Returns the created request ID if successful
Required parameters
Parameter | Type | Description |
| String | Name of the process to launch |
| Bool | Launch process in test mode?
|
| String | XML structured INOUT parameters to send to the process start (see the WorkflowContext section above for more information) |
Optional parameters (StartProcessHeader
)
StartProcessHeader
)Parameter | Type | Description |
| String | Username of impersonating user |
| Int | Process ID (to be used independently without the |
| Int | Process version (to be used |
For an example of usage, download SDK_CS_RemoteLaunchSOAP_v6_1.zip
, unzip it, and follow the instructions in the included setup.txt
file.
Impersonation
The StartProcess
web method supports impersonation, so an authorized user can launch a process on behalf of another user with this web method call. This impersonation feature is restricted to allowed users (defined in the ProcessesRuntimeWebServiceAllowedUsers
entry in the \wfgen\ws\web.config
file). This feature is useful when an external application doesn't have the user's credentials and wants to instantiate a process on their behalf. For more information, see the Impersonate username section below and the Web Services API: StartProcess: Launch a process on behalf of another user topic on the WorkflowGen Forum & Knowledge Base.
Security
If you receive the message SoapException "Security: You are not authorized to use this web service"
, it's because some WorkflowGen web service methods require an additional configuration setting to be called by a user. In the \wfgen\ws\web.config
file, you can edit the following key to authorize WorkflowGen administrators to use the secured web methods:
The value contains a comma separated list of usernames. The username must be prefixed by the domain name according to your authentication method.
The following web service API methods are secured by this setting:
RaiseCancelExceptionOnActivityInstance
RaiseCancelExceptionOnActivityInstanceByName
RaiseExceptionOnActivityInstance
RaiseExceptionOnActivityInstanceByName
UpdateProcessInstanceData
StartProcess
, with theImpersonateUsername
SOAP or GET/POST parameter
Performance
By default, the GetProcessInstanceList
and GetActivityInstanceList
web methods retrieve all the process data associated to the requests/actions. If you don't need process data values, you only need to add a SOAP header or query string parameter:
ShowData=False
If you only need a subset of the associated process data, you can specify the list of process data to be retrieved with the DataList
SOAP header or query string parameter:
DataList=AMOUNT,APPROVAL,COMPANY
This will significantly improve performance.
Example of a query string:
Process data
Get associated data of a request and download the associated attachments.
If you are a process supervisor, manager, or administrator, you can use the web API to get the data of a specific request and download the associated attachments using the URLs below, with the request number as the value of ProcessInstanceId
(these examples use request 17
).
If the request is still ongoing:
If the request is closed:
Inside the retrieved XML output (RSS, XML, or ATOM, depending on the template you're using; see \wfgen\ws\App_Data
for the templates), you'll see a specific URL for each data file, which you can download using an HTTP GET/POST or an AJAX call from your web form.
Example
UpdateProcessInstanceData
UpdateProcessInstanceData
The UpdateProcessInstanceData
web method allows you to update the associated data of a request in progress from an external application. It is restricted to allowed users as defined in the ProcessesRuntimeWebServiceAllowedUsers
entry in the \wfgen\ws\web.config
file.
Only requests in progress can be updated. If a process data to update is locked by another user (such as when a user is filling in a web form that will update one of the process data), the web method triggers a SOAP exception.
Parameters
The web method parameters (SOAP or GET/POST) are:
processInstanceId
Example:
12345
activityInstanceId
Example:
2
workflowContext
Example:
Here,
MYTEXTDATA
andMYNUMDATA
are the process data names to update.
Usage
By updating process data associated to requests in progress, you might impact the ongoing workflow with side effects such as loops or stuck requests, so you should be careful when updating process data used in conditions.
If you need more security and traceability, we recommend using workflow actions to update process data (for more information, see Workflow Design: Update a process data from an external application on the WorkflowGen Forum & Knowledge Base).
Impersonate username
All user context-based API web methods support impersonation, so an authorized user can call a web method on behalf of another user.
Security
The impersonation feature is restricted to allowed users as defined in the ProcessesRuntimeWebServiceAllowedUsers
entry in the \wfgen\ws\web.config
file.
Usage
There are two ways to set the ImpersonateUsername
value:
As a querystring parameter; in this example, a list of
todo
actions forjsmith
:As a SOAP header parameter; in this example, to complete an action on behalf of
jsmith
:
Last updated