HAMcast developers

Changes between Version 8 and Version 9 of documentation/tools/monitoring/rest


Ignore:
Timestamp:
02/18/12 16:26:50 (13 years ago)
Author:
zagaria
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/tools/monitoring/rest

    v8 v9  
    3333
    3434On 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{{{
     38HTTP/ 1 . 1 200 OK
     39Content Type: text/xml; charset=utf 8
     40Content Length : 1245
     41
     42<method>
     43hello_client
     44<\method>
     45<hello>
     46hello 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}}}