• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. Balistar
    3. Best

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 21
    • Posts 75
    • Best 2
    • Controversial 0
    • Groups 0

    Best posts made by Balistar

    • RE: Bulk data upload with HTTP Receiver possible? - SOLVED by using API REST instead

      Solution is to use REST API instead.

      curl -X POST "http://192.168.1.2:8080/rest/v2/point-values?fireEvents=NEVER"

      API follows JSON syntax "Square brackets hold arrays and values are separated by ,(comma)"

      [
        {
          "annotation": "",
          "dataType": "NUMERIC",
          "timestamp": 1576117390000,
          "value": 227.1,
          "xid": "DP_a9b3bce6-98ea-493a-b840-2450f3ffc3ae"
        },
        {
          "annotation": "",
          "dataType": "NUMERIC",
          "timestamp": 1576117400000,
          "value": 228.1,
          "xid": "DP_a9b3bce6-98ea-493a-b840-2450f3ffc3ae"
        },
          {
          "annotation": "",
          "dataType": "NUMERIC",
          "timestamp": 1576117410000,
          "value": 229.1,
          "xid": "DP_a9b3bce6-98ea-493a-b840-2450f3ffc3ae"
        },
        {
          "annotation": "",
          "dataType": "NUMERIC",
          "timestamp": 1576117342000,
          "value": 220.1,
          "xid": "DP_a9b3bce6-98ea-493a-b840-2450f3ffc3ae"
        }
      ]
      

      Full CURL with this body:

      curl -X POST "http://192.168.1.2:8080/rest/v2/point-values?fireEvents=NEVER" -H "accept: application/json;charset=UTF-8" -H "Content-Type: application/json;charset=UTF-8" -H "X-XSRF-TOKEN: 58594b34-9a0d-4417-9b23-xxxx" -d "[ { \"annotation\": \"\", \"dataType\": \"NUMERIC\", \"timestamp\": 1576117390000, \"value\": 227.1, \"xid\": \"DP_a9b3bce6-98ea-493a-b840-2450f3ffc3ae\" }, { \"annotation\": \"\", \"dataType\": \"NUMERIC\", \"timestamp\": 1576117400000, \"value\": 228.1, \"xid\": \"DP_a9b3bce6-98ea-493a-b840-2450f3ffc3ae\" }, { \"annotation\": \"\", \"dataType\": \"NUMERIC\", \"timestamp\": 1576117410000, \"value\": 229.1, \"xid\": \"DP_a9b3bce6-98ea-493a-b840-2450f3ffc3ae\" }, { \"annotation\": \"\", \"dataType\": \"NUMERIC\", \"timestamp\": 1576117342000, \"value\": 220.1, \"xid\": \"DP_a9b3bce6-98ea-493a-b840-2450f3ffc3ae\" }]"
      
      posted in How-To
      B
      Balistar
    • Over the last few month very little participation from staff.

      Something is seriously going wrong at mango-os. Or am I the only one that has noticed that more and more posts remain unanswered and that there is almost no participation from the company's staff.
      Over the last few months there have been very few or no post by Jared Wiltshire, Joel Haggar, Phil Dunlap or Terry Packer.

      Craig Web seemed to be posting for a while, but has also stopped a month ago.

      The only one who seems to be frequently posting is Matt Fox, and he does not work at mango-os as far as I can see,

      This forum is more or less the only reason we have chosen Mango. Other SCADAs mosty don't publicly post solutions and answers to issues. Is Mango-OS going this way?

      posted in Mango Automation general Discussion
      B
      Balistar