Changes between Version 2 and Version 3 of ZooKernel
- Timestamp:
- Aug 26, 2009, 3:08:54 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ZooKernel
v2 v3 7 7 8 8 Acutaly, you could compile and use the code available on the svn server on your own GNU / LINUX platform this way : 9 10 ==== Requirements ==== 11 12 To be able to compile the current source, you need to have some library allready installed on your system : 13 14 * [http://www.fastcgi.com/drupal/node/5 FastCGI] (installed in /path/to/trunk/dist/, using --prefix=/path/to/trunk/dist configure option), 15 * [http://dev.cartography.st/zoo-project/changeset/15 cgic] (same, use just {{{make}}}) . 16 * [http://www.xmlsoft.org/index.html libxml2], 17 * [http://www.python.org Python]. 9 18 10 19 ==== Getting the source code ==== … … 22 31 cd zoo-kernel 23 32 make 33 make zoo_loader.cgi 24 34 make demo_service.zo 25 35 }}} 26 36 27 Now, you get the ZooKernel and two "service providers": {{{demo_service.zo}}} (C++) and {{{test_service.py}}} (Python).37 Now, you get the ZooKernel (Shell and Cgi version) and two "service providers" of different kind : {{{demo_service.zo}}} (C++) and {{{test_service.py}}} (Python). 28 38 29 39 ==== Using the code ==== 30 To run request to ZooKernel, use the following from your command line :40 To run request with ZooKernel from command command line, use the following example : 31 41 32 42 {{{ … … 40 50 }}} 41 51 52 Your could also see the Cgi Version from [http://shilpa.media.osaka-cu.ac.jp/cgi-bin/zoo_loader.cgi?ServiceProvider=/var/www/localhost/cgi-bin/demo_service.zo&metapath=/var/www/localhost/cgi-bin/&Service=WPS&request=GetCapabilities&Version=1.0.0&Language=en-CA&Identifier=helloworld Shilpa !] 53 54 Some other samples from the Shilpa server : 55 56 * [http://shilpa.media.osaka-cu.ac.jp/cgi-bin/zoo_loader.cgi?ServiceProvider=/var/www/localhost/cgi-bin/test_service.zo&metapath=/var/www/localhost/cgi-bin/Distance.zcfg&Service=WPS&Request=DescribeProcess&Version=1.0.0&Language=en-CA&Identifier=Buffer,Distance DescribeProcess Response Sample 1] 57 * [http://shilpa.media.osaka-cu.ac.jp/cgi-bin/zoo_loader.cgi?ServiceProvider=/var/www/localhost/cgi-bin/test_service.zo&metapath=/var/www/localhost/cgi-bin/Buffer.zcfg&Service=WPS&Request=DescribeProcess&Version=1.0.0&Language=en-CA&Identifier=Buffer,Distance DescribeProcess Response Sample 1] 58 * [http://shilpa.media.osaka-cu.ac.jp/cgi-bin/zoo_loader.cgi?ServiceProvider=/var/www/localhost/cgi-bin/demo_service.zo&metapath=/var/www/localhost/cgi-bin/Buffer.zcfg&request=Execute&service=WPS&version=1.0.0&language=en-CA&Identifier=helloworld&DataInputs=A=12;BufferDistance=10&ResponseDocument=BufferedPolygon&StoreExecuteResponse=true Execute Response Sample] (not working). 59 42 60 Finally you've runed two services from two services provider, the same way.