• Recent
    • Tags
    • Popular
    • Register
    • Login

    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 4 Documentation Website Mango 5 Documentation Website Radix IoT LinkedIn

    HHTP Retriever states no value match

    Scheduled Pinned Locked Moved User help
    2 Posts 2 Posters 1.1k Views 2 Watching
    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 Offline
      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 Offline
        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

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        • First post
          Last post