• Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular

    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

    HHTP Retriever states no value match

    User help
    2
    2
    137
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Z
      zenvakil last edited by

      Hello Everyone,

      I'm tryint to set up a http retriever data source that tracks certain points on a webpage. I've created the data source and a test data point with the RegEx below:

      2030e0c2-ad33-4327-8a02-91049238509a-image.png

      I've made sure the RegEx points to the right number, in this case what im trying to collect is the "93" highlighted below (tested using notepadd++ and regexr.com:

      eb215ee3-c137-4e0d-81b9-643f7453396f-image.png

      But for some reason whenever i try to validate the data source, it states
      "Validation error - No value match made for point Test Soc ".

      Does anyone have any thoughts on this?

      1 Reply Last reply Reply Quote 0
      • R
        Ralf last edited by

        Hi zenvakil,

        My working example for Mango:

        <wind value="10" unit="km/h" dir="S" symbol="13" symbolB="37"/>
        

        If I want the winddirection (=S) I have to code:

        dir="(.*?)"
        

        So try

        SoC"(.*?)"
        

        If you have more than 1 SoC in your webpage:

        <hour value="01:00">
        <temp value="0" unit="°C"/>
        <symbol value="1" desc="Sonne" value2="1" desc2="Sonne"/>
        <wind value="10" unit="km/h" dir="S" symbol="13" symbolB="37"/>
        <wind-gusts value="27" unit="km/h"/>
        <rain value="0" unit="mm"/>
        <humidity value="88"/>
        <pressure value="1006" unit="mb"/>
        <clouds value="0%"/>
        <snowline value="600" unit="m"/>
        <windchill value="-4" unit="°C"/>
        <uv_index value="0"/>
        </hour>
        

        try this:

        01:00"><.*?><.*?><.*?><.*?><.*?><humidity value="(.*?)"
        
        1 Reply Last reply Reply Quote 0
        • First post
          Last post