Changes between Initial Version and Version 2 of Ticket #85
- Timestamp:
- Feb 12, 2014, 3:37:40 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #85
- Property Component changed from Development platform to zoo-kernel
-
Ticket #85 – Description
initial v2 3 3 The request 4 4 5 {{{ 5 6 service=WPS&version=1&request=Execute&Identifier=Example&DataInputs=mandatory_literal=example&ResponseDocument=Dummy@mimeType=text/xml&storeExecuteResponse=true&status=false 7 }}} 6 8 7 9 (no optional data given, and status=false) yields the following input maps: 8 10 11 {{{ 9 12 [optional_literal] 10 13 minOccurs = 0 … … 13 16 value = mandatory_literal_default 14 17 inRequest = false 18 }}} 15 19 20 {{{ 16 21 [optional_complex_type] 17 22 minOccurs = 0 … … 21 26 inRequest = false 22 27 value = NULL 28 }}} 23 29 30 {{{ 24 31 [mandatory_literal] 25 32 value = example 33 }}} 26 34 27 35 Note: Here optional_literal has been assigned the default value for mandatory_literal. … … 29 37 Running the above request with status=true instead yields the following input maps: 30 38 39 {{{ 31 40 [optional_literal] 32 41 value = 0 … … 35 44 maxOccurs = 0 36 45 inRequest = true 46 }}} 37 47 48 {{{ 38 49 [optional_complex_type] 39 50 value = 0 … … 43 54 maxOccurs = 0 44 55 inRequest = true 56 }}} 45 57 58 {{{ 46 59 [mandatory_literal] 47 60 value = example 61 }}} 48 62 49 63 Note: Here optional_literal and optional_complex_type both have the attribute inRequest=true although they are not included in the request, and both have been assigned the value "0".