[Pywps-dev] PyWPS support for ExecuteResponseLocation, providing process status

Robin Skahjem-Eriksen skahjem-eriksen at stcorp.no
Wed Apr 20 01:05:48 PDT 2016


Jonas, thank you for your clarification on the request attributes and the
changes to the WPS spec.

  

I have added `status=true`to the execution request in addition to the
aforementioned attributes, and I still don't get a reponse with any URL to the
ResponseDocument.

  

My request looks like this:

  

http://localhost/wps/?service=WPS&request=Execute&Identifier=ipf&v
ersion=1.0.0&DataInputs=processor_name=ST_IPF_TESTER;processor_version=01.
13;input_selector=time-range;muninn_query=validity_stop > 1980-07-03 and
validity_start < 1980-07-05;storeExecuteResponse=true;status=true  

  

And the process is defines as such:

  

class IPF(Process):  
   def __init__(self):  
       inputs = [  
           LiteralInput(  
               'processor_name',  
               'IPF processor name',  
               data_type='string'  
           ),  
           LiteralInput(  
               'processor_version',  
               'IPF processor version',  
               data_type='string'  
           ),  
           LiteralInput(  
               'input_selector',  
               'SOL input selection',  
               data_type='string'  
           ),  
           LiteralInput(  
               'muninn_query',  
               'Muninn product catalog query string',  
               data_type='string'  
           ),  
       ]  
       outputs = [  
           LiteralOutput(  
               'ipf_result',  
               'SUCCESS/FAILURE',  
               data_type='string'  
           )  
       ]  
  
       super(IPF, self).__init__(  
           self._handler,  
           identifier='ipf',  
           version='0.1',  
           title='Generic IPF processor',  
           abstract='Processors for handling IPF products',  
           inputs=inputs,  
           outputs=outputs,  
           store_supported=True,  
           status_supported=True  
       )  

  

(.. handler omitted ..)

  

Am I missing something?

  

  

Med vennlig hilsen / With kind regards,  
  
Robin Skahjem-Eriksen  
  
Software developer  
  
Science [&] Technology AS  
  
Reg. nr.: 996 229 009 MVA  
  
[E]: [skahjem-eriksen at stcorp.no](mailto:skahjem-eriksen at stcorp.no)  
  
[Address]:  
  
Forskningsparken  
  
Gaustadalléen 21  
  
0349 Oslo  
  
Norway  
  
[W]: <http://www.stcorp.no>  
  
[P]:+47 45 911 694  
  
[E]: [info at stcorp.no](mailto:info at stcorp.no)

> On Apr 19 2016, at 9:26 pm, Jonas Eberle <jonas.eberle at gmx.de> wrote:  

>

> Hi Robin,

>

>  

>

> I guess you're looking for the "statusLocation" attribute of the
ExecuteResponse tag. The value of this attribute is the URL to the response
document, especially needed when you use asynchronous execution (both,
status=true and storeExecuteResponse=true, needed in the execute request).
There is no executeResponseLocation element, please see the "Corrigendum for
OpenGIS Implementation Standard Web Processing Service (WPS) 1.0.0 (0.0.8)"
[1].

>

>  

>

> Best regards,

>

> Jonas

>

>  

>

> [1] = <http://portal.opengeospatial.org/files/?artifact_id=32766>  
  
\----- Am 19. Apr 2016 um 11:09 schrieb Robin Skahjem-Eriksen <skahjem-
eriksen at stcorp.no>:  

>

>> I am trying to get pywps working so that a ResponseDocument is used to show
the process status, by having the Execute response provide a URL to the
ResponseDocument, as specified in the WPS 1.0 standard.

>>

>>  

>>

>> I am not sure if pywps actually supports this and if so, the feature is not
well documented. I see that pywps supports serving output files and serving
these, and I was hoping that this could be used to provide the response
document.

>>

>>  

>>

>> I initialize a Process object with `store_supported` and `status_supported`
set to `True` and provide `storeExecuteResponse=true` in the GET request.
However, I haven't manged to receive a response containing the
`executeResponseLocation` element, and I cannot find any code in the master
branch code base that handles an `ExecuteResponseLocation`.

>>

>>  

>>

>> Am I missing anything, or is this feature simply not supported by pywps?

>>

>>  

>>

>> Med vennlig hilsen / With kind regards,  
  
Robin Skahjem-Eriksen  
  
Software developer  
  
Science [&] Technology AS  
  
Reg. nr.: 996 229 009 MVA  
  
[E]: [skahjem-eriksen at stcorp.no](mailto:skahjem-eriksen at stcorp.no)  
  
[Address]:  
  
Forskningsparken  
  
Gaustadalléen 21  
  
0349 Oslo  
  
Norway  
  
[W]: <http://www.stcorp.no>  
  
[P]:+47 45 911 694  
  
[E]: [info at stcorp.no](mailto:info at stcorp.no)

>>

>>  
_______________________________________________  
pywps-dev mailing list  
pywps-dev at lists.osgeo.org  
http://lists.osgeo.org/mailman/listinfo/pywps-dev

>

>  

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/pywps-dev/attachments/20160420/92547157/attachment.html>


More information about the pywps-dev mailing list