With the GetStatusRequestResponse the service provides information about the processing-status of a task.

parameters

Mandatory parameters for this response:

  • taskID - Identifies the task
  • status - Information about the status of this task. Possible values ​​are:
    • unknown
    • in operation
    • finished
    • not yet started
    • cancelled
    • delayed

Optional parameters for this response:

  • description - a description/justification for the given response
  • estimatedToC - a estimated time when the processing of the task will be finished

An example of a GetStatusRequestResponse:

<?xml version="1.0" encoding="UTF-8"?>
<GetStatusRequestResponse xmlns="http://www.opengis.net/sps">
    <taskID>23</taskID>
    <status>in operation</status>
</GetStatusRequestResponse>

Add comment