Changes between Version 22 and Version 23 of ZooKernel
- Timestamp:
- Sep 8, 2009, 4:24:22 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ZooKernel
v22 v23 118 118 </DescribeProcess> 119 119 }}} 120 * A sample Execute request (same as previous example using Buffer from basic ogr service) :120 * A sample Execute request using ResponseDocument (same as previous example using Buffer from basic ogr service) : 121 121 {{{ 122 122 #!xml … … 128 128 <ows:Identifier>InputPolygon</ows:Identifier> 129 129 <ows:Title>Playground area</ows:Title> 130 131 130 <wps:Reference xlink:href="http://carto.languedoc-roussillon.ecologie.gouv.fr/webservices/wfs/diren_general/?VERSION=1.1.0&service=WFS&request=GetFeature&typename=Znieff1&maxfeatures=1"/> 132 131 </wps:Input> … … 136 135 <wps:Data> 137 136 <wps:LiteralData>400</wps:LiteralData> 138 139 137 </wps:Data> 140 138 </wps:Input> … … 145 143 <ows:Identifier>BufferedPolygon</ows:Identifier> 146 144 <ows:Title>Area serviced by playground.</ows:Title> 147 148 145 <ows:Abstract>Area within which most users of this playground will live.</ows:Abstract> 149 146 </wps:Output> … … 152 149 </wps:Execute> 153 150 }}} 151 * A sample Execute request using RawData (same as previous example using Buffer from basic ogr service) : 152 {{{ 153 #!xml 154 <wps:Execute service="WPS" version="1.0.0" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 155 ../wpsExecute_request.xsd"> 156 <ows:Identifier>Buffer</ows:Identifier> 157 <wps:DataInputs> 158 <wps:Input> 159 <ows:Identifier>InputPolygon</ows:Identifier> 160 <ows:Title>Playground area</ows:Title> 161 <wps:Reference xlink:href="http://carto.languedoc-roussillon.ecologie.gouv.fr/webservices/wfs/diren_general/?VERSION=1.1.0&service=WFS&request=GetFeature&typename=Znieff1&maxfeatures=1"/> 162 </wps:Input> 163 <wps:Input> 164 <ows:Identifier>BufferDistance</ows:Identifier> 165 <ows:Title>Distance which people will walk to get to a playground.</ows:Title> 166 <wps:Data> 167 <wps:LiteralData>400</wps:LiteralData> 168 </wps:Data> 169 </wps:Input> 170 </wps:DataInputs> 171 <wps:ResponseForm> 172 <wps:RawDataOutput> 173 <ows:Identifier>BufferedPolygon</ows:Identifier> 174 </wps:RawDataOutput> 175 </wps:ResponseForm> 176 </wps:Execute> 177 }}} 154 178 155 179 No sample using the GetCapabilities request, only because we get issue in another level for GetCapabilities request, even the KVP is not working for every ServiceProvider.