HHTP Retriever states no value match
-
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:
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:
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?
-
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="(.*?)"