The Command

C:\JSONParser.Compact2013>JSONParser POST Temperature 78


The HTML Post

connecting...
sending Temperature
POST /tables/telemetry2?embedded=1 HTTP/1.1
Host: sportronicsdj.azure-mobile.net
X-ZUMO-APPLICATION: NtcMLPQtuAqWtvXOwrZVQtqHevNUnN27
Content-Type: application/json
Content-Length: 35

{"sensor":"Temperature","value":78}


The Response...

HTTP/1.1 201 Created
Cache-Control: no-cache
Content-Length: 104
Content-Type: application/json
Location: https://sportronicsdj.azure-mobile.net/tables/telemetry2/39
Server: Microsoft-IIS/8.0
x-zumo-version: Zumo.master.0.1.6.4197.Runtime
X-Powered-By: ASP.NET
Set-Cookie: ARRAffinity=f7571babd6028c76ebaf52852c2219d60e96e697c3b3b450ceb3b4adfef94310;Path=/;Domain=sportronicsdj.azure-mobile.net
Date: Mon, 13 Apr 2015 10:26:03 GMT


The JSON string (at end of the Response)

{"sensor":"Temperature","value":78,"complete":false,"_DateTime":"Mon, 13 Apr 2015 10:26:04 GMT","id":39}


Parsing the JSON string

1: Starting parse of array.

2: New record.
  (0,0,0)  Name:sensor Value:"Temperature" ValueType:String
  (1,0,1)  Name:value Value:78 ValueType:Integer
  (2,0,2)  Name:complete Value:false ValueType:Boolean
  (3,0,3)  Name:_DateTime Value:"Mon, 13 Apr 2015 10:26:04 GMT" ValueType:String
  (4,0,4)  Name:id Value:39 ValueType:Integer

Number of Records:1
Number of values per record:5