Changeset 722 for branches/PublicaMundi_David-devel/docs/kernel/what.rst
- Timestamp:
- Jul 2, 2015, 1:25:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PublicaMundi_David-devel/docs/kernel/what.rst
r711 r722 17 17 new or existing web platforms. 18 18 19 20 19 ZOO-Kernel lets you process geospatial or non geospatial data using 21 20 well formed WPS requests. The WPS server is able to manage and chain … … 25 24 First class WPS server 26 25 ----------------------- 26 27 Simple 28 ...... 29 30 The ZOO-Kernel rely on simple principles and tends to ease the 31 implementation of new services by sharing similar data structures for 32 every supported programming languages. The ZOO-Kernel is responsible 33 to parse the requests it receives and return the corresponding WPS 34 response. 35 36 In case of an *Execute* request, the ZOO-Kernel stores informations in 37 a basic KVP data structure for the programming language used to 38 implement the service, dynamically load the Service Provider defined 39 in the zcfg file and run a specific function corresponding to the 40 service, passing three arguments. Once the function return, ZOO-Kernel 41 knows if the service run succeessfuly or failed by checking the 42 returned value. In the case it succeeded, the ZOO-Kernel then parse 43 the third arguments containing the result and produce the output in 44 the desired format. 45 46 27 47 28 48 Compliant … … 82 102 .. _`Hash`: http://ruby-doc.org/core-2.2.0/Hash.html 83 103 84 85 Scalable86 ........................................................87 88 ZOO-Kernel can **scale** to large infrastructures involving high89 numbers of (concurrent) WPS requests and/or huge amounts of90 input/output.91 92 93
Note: See TracChangeset
for help on using the changeset viewer.