Changes between Version 8 and Version 9 of documentation/tools/monitoring/rest
- Timestamp:
- 02/18/12 16:26:50 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
documentation/tools/monitoring/rest
v8 v9 33 33 34 34 On every call a response will be created using HTTP REPLY messages and a XML encoded payload. The payload will always start with the name of the call followed by the returned values. There are basically two types of values lists and single values. In case of the ''hello_client'' method the returned value will be a string and a list of numbers counting from 1 to 5. 35 36 37 {{{ 38 HTTP/ 1 . 1 200 OK 39 Content Type: text/xml; charset=utf 8 40 Content Length : 1245 41 42 <method> 43 hello_client 44 <\method> 45 <hello> 46 hello client 47 <\hello> 48 <count> 49 <num> 50 1 51 <\num> 52 <num> 53 2 54 <\num> 55 <num> 56 3 57 <\num> 58 <num> 59 4 60 <\num> 61 <num> 62 5 63 <\num> 64 <\count> 65 66 }}}