source: branches/PublicaMundi_David-devel/docs/services/debug.rst @ 716

Last change on this file since 716 was 716, checked in by djay, 9 years ago

Add the POST request debuging method description.

  • Property svn:keywords set to Date Author
File size: 3.0 KB

Debugging ZOO Services

Several methods can be used in order to debug :ref:`services_index`. The most common solutions are web or command line.

?

Web

Any problem can be checked in the Apache server log file when using http WPS requests.

On Unix, the log files is usually located in /var/log/apache2 and the relevant one is named error_log. A simple way to read this file is to use the tail command, as it allows to see the file updates for each request

tail -f /var/log/apache2/error_log

If the log is not clear enough, you still have the possibility to add more debug information to your source code, writing to standard errors.

Python

Using Python, you can for example do this:

import sys
#add this line when you want see an own message
sys.stderr.write("My message")

Javascript

Using JavaScript, you can use alert to print a string to standard error, for example:

// add this line when you want to see own message
alert('My message')
// you can debug value of inputs, outputs or conf
alert(inputs["S"]["value"])

Note

If you try to pass an object it will only return [object Object]

Command line

:ref:`kernel_index` (zoo_loader.cgi) can also be used from command line. This is really useful for debugging services in a deeper way, for example:.

?
# in order to use it you have to copy test_service.py and HelloPy.zcfg from
# the example services
./zoo_loader.cgi "service=wps&version=1.0.0&request=execute&identifier=HelloPy&datainputs=a=your name&responsedocument=Result"

Working this way you can use the standard debug system of the actual programming language used to develop your service.

In case you should simulate POST requests, you can use the following command to tell the ZOO-Kernel to use the file /tmp/req.xml as the input XML request:

Error: Failed to load processor guess
No macro or processor named 'guess' found

GDB

From command line you can use also the command line tool GDB to debug zoo_loader.cgi, you have to run:

# launch zoo_loader.cgi from gdb
gdb zoo_loader.cgi
# now run your request
run "service=wps&version=1.0.0&request=execute&identifier=HelloPy&datainputs=a=your name&responsedocument=Result"

At this point you can ask help at the ZOO mailing list copying the result of the command.

Python

For Python, you can use pdb, more info at http://docs.python.org/2/library/pdb.html

import pdb
# add this line when you want investigate your code in more detail
pdb.set_trace()

Javascript

You can use alert also to print in the console, more info in the :ref:`web_javascript` web section

?
Note: See TracBrowser for help on using the repository browser.

Search

ZOO Sponsors

http://www.zoo-project.org/trac/chrome/site/img/geolabs-logo.pnghttp://www.zoo-project.org/trac/chrome/site/img/neogeo-logo.png http://www.zoo-project.org/trac/chrome/site/img/apptech-logo.png http://www.zoo-project.org/trac/chrome/site/img/3liz-logo.png http://www.zoo-project.org/trac/chrome/site/img/gateway-logo.png

Become a sponsor !

Knowledge partners

http://www.zoo-project.org/trac/chrome/site/img/ocu-logo.png http://www.zoo-project.org/trac/chrome/site/img/gucas-logo.png http://www.zoo-project.org/trac/chrome/site/img/polimi-logo.png http://www.zoo-project.org/trac/chrome/site/img/fem-logo.png http://www.zoo-project.org/trac/chrome/site/img/supsi-logo.png http://www.zoo-project.org/trac/chrome/site/img/cumtb-logo.png

Become a knowledge partner

Related links

http://zoo-project.org/img/ogclogo.png http://zoo-project.org/img/osgeologo.png