Changes between Version 7 and Version 8 of RepQuickStart


Ignore:
Timestamp:
Oct 7, 2010, 5:43:43 PM (14 years ago)
Author:
s.meissner
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RepQuickStart

    v7 v8  
    3434The response is the Observation and Measurement value in XML-RDF syntax, which is returned in the Response body.
    3535
    36 {{{
    37 <?xml version='1.0' encoding='UTF-8'?>
    38 <!DOCTYPE rdf:RDF [
    39         <!ENTITY rdf  'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
    40         <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
    41         <!ENTITY sensor   'http://www.ict-sensei.org/Sensor#'>
    42         <!ENTITY mo 'http://www.ict-sensei.org/MeasurementAndObservation#'>
    43         <!ENTITY provider456 'http://www.resource-provider-456.com/resources#'>
    44 ]>
    45 <rdf:RDF xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:provider456="&provider456;"
    46          xmlns:mo="&mo;" xmlns:sensor="&sensor;">
    47 <sensor:Light rdf:about="&provider456;LightSensor15"
    48                 mo:hasTimeStamp="Thu Jan 14 09:15:36 2009"       
    49                 mo:hasDecimalValue="0.23"
    50                 mo:hasUnit="percent">
    51 </sensor:Light>
    5236</rdf:RDF>
    5337}}}