Description
Using a an npm package for WPS on the client, the switch to WPS 2.0.0 (for advanced feature) produces
WPS Execute requests in the following form
2.0.0 EXECUTE
...
<wps:Input id="pixel_size">
<wps:Data mimeType="text/xml">
<wps:LiteralValue dataType="xs:double">4</wps:LiteralValue>
</wps:Data>
</wps:Input>
...
instead of this form (when using 1.0.0)
1.0.0 EXECUTE
...
<wps:Input>
<ows:Identifier>pixel_size</ows:Identifier>
<wps:Data>
<wps:LiteralData>56</wps:LiteralData>
</wps:Data>
</wps:Input>
...
I am not sure if this is a valid WPS request, but PyWPS execution fails when the first format is used with this error
<ows:Exception exceptionCode="MissingParameterValue" locator="area_of_interest" >
<ows:ExceptionText>area_of_interest</ows:ExceptionText>
</ows:Exception>
Environment
Steps to Reproduce
Send a WPS Service EXECUTE request with the 2.0.0 format
Description
Using a an npm package for WPS on the client, the switch to WPS 2.0.0 (for advanced feature) produces
WPS Execute requests in the following form
2.0.0 EXECUTE
instead of this form (when using 1.0.0)
1.0.0 EXECUTE
I am not sure if this is a valid WPS request, but PyWPS execution fails when the first format is used with this error
Environment
Steps to Reproduce
Send a WPS Service EXECUTE request with the 2.0.0 format