Getting http request to work with HTTP 0.9

Thanks Steve;

I'm too new to Node-Red to understand

So, I ran the HTML node just entering the address of the DTU in it, and I get this response in the debug, just in case there is a solution for this:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
  <HEAD>
<meta http-equiv="x-ua-compatible" content="ie=7" />
<TITLE>Hoymiles</TITLE>
<SCRIPT>
function getData(url) {
	var xmlhttp;
	if (window.XMLHttpRequest) {
  		xmlhttp=new XMLHttpRequest();
  	} else {
  		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  	}
	xmlhttp.onreadystatechange=function() {
  		if (xmlhttp.readyState==4 && xmlhttp.status==200) {
    		alertContents1(xmlhttp.responseText);
    	}
  	}
	xmlhttp.open('GET',url + '?_t=' + new Date().getTime(),true);
	xmlhttp.send(null);
}
setInterval("getData('hometable.xml')", 3000);
function alertContents1(text)
{
          var t = 0;
          var j = 0;
          var k = 0;
          var temp;
          var str;
          var ss;
          var Rssi_Value = "";
		   var arr = text.split(";");
          document.getElementById("outpw").innerHTML = arr[0] + " kW";
          document.getElementById("tetot").innerHTML = arr[...

I'm really only interested in the first 4 or 5 data fields in there (the debug somehow only shows the first 2, "outpw" and "tetot")

If I can't get this running, I guess I could have my little Arduino get the data out of it and present it to Node-Red on the same Web-page that it already can read. "Kludge" comes to mind...

Cheers