HAMcast developers

Changes between Version 1 and Version 2 of documentation/tools/monitoring/rest


Ignore:
Timestamp:
02/18/12 13:31:45 (12 years ago)
Author:
zagaria
Comment:

--

Legend:

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

    v1 v2  
    66== Concept ==
    77
    8 Restful web service is a light weight remote procedure call (rpc) interface.
     8Restful web service is a light weight remote procedure call (rpc) interface, using a client-server architecture.
     9The server provides a number of methods that can be called by the client.
     10Therefor client and server are connected via TCP using HTTP as message protocol.
     11Methods are identified by an URI in the HTTP header.
     12The payload of a message, the returned value of a method, is encoded in XML.
     13
     14A detailed description of RESTful web service can be found at : [http://de.wikipedia.org/wiki/Representational_State_Transfer], [http://www.oio.de/public/xml/rest-webservices.htm]
     15
     16