Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The request and response will look the same as the specific validation types.

Step Updates

Available from v. 1.9.1

Step updates lets the backend return values as a response to an online request. The individual <stepUpdate /> element needs to contain a name and a value. The name is used to identify a step in the current registration collector workflow, and the value is applied to that step. Currently step updates will only be applied to steps past the validating step.

The response should look as follows, where step updates is the wrapper element containing any specific step update.

Code Block
<?xml version="1.0" encoding="UTF-8"?>
<response xmlns="http://schemas.microsoft.com/Dynamics/Mobile/2007/04/Documents/Response" messageid="836DEC5F-097E-4300-8CC0-7FE4CB2B76A5" status="Completed">
  <responseData xmlns="http://schemas.taskletfactory.com/MobileWMS/BaseDataModel">
    <stepUpdates xmlns="http://schemas.taskletfactory.com/MobileWMS/WarehouseInquiryDataModel">
      <step name="CustomStep" value="CustomStepValue" />
      <step name="Quantity" value="2.5"  interactionPermission="AllowEdit" />
    </stepUpdates>
  </responseData>
</response>

Response for Type and quantity

...