executeSystemActivity
This method executes an asynchronous system activity of the workflow. To use it, it is necessary to follow the standard documented below:
Java class | |
---|---|
Request | web\wwwroot\ws\java\workflow\ExecuteSystemActivityRequestType.java |
Return | web\wwwroot\ws\java\workflow\ExecuteSystemActivityResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
WorkflowID | X | Workflow ID # |
ActivityID | X | Activity ID # |
ActivityOrder | Activity order number |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:executeSystemActivity>
<!--You may enter the following 3 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<urn:ActivityID>?</urn:ActivityID>
<!--Optional:-->
<urn:ActivityOrder>?</urn:ActivityOrder>
</urn:executeSystemActivity>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
Status | Method execution status. Its value may be: SUCCESS: Method executed successfully FAILURE: An error occurred during the method execution |
Code | Method return code |
Detail | Method return detail |