# HTTP buffer length

**URL:** https://discourse.nodered.org/t/http-buffer-length/35235
**Category:** General
**Created:** [2 November 2020 19:18 UTC](https://discourse.nodered.org/t/http-buffer-length/35235 "2020-11-02T19:18:24Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Steve-Mcl](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/steve-mcl/32/4826_2.png) [@Steve-Mcl](https://discourse.nodered.org/u/Steve-Mcl)
#### Post date: [2 November 2020 19:45 UTC](https://discourse.nodered.org/t/http-buffer-length/35235/2 "2020-11-02T19:45:44Z")

</div>

I suspect you are attempting to access the values on the page?

 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/7/4/74f7128d7733aee5fc3db79f5cfbcb8d1142790d.png)

The request is recieving 5700 characters because that is exactly the size of the HTML

 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/a/4/a448e7298d4c0fc7294c3bd12feef8cb2faea783.png)

HOWEVER - the html for `http://alloy.geocom.cl/` does NOT contain any of the data - the data on that page is populated via a SCRIPT and the data actually comes from `http://alloy.geocom.cl/xml/dynamic/merge.xml?svTrack=&dataLogger=&ioConfig=&power=&conn_status=`

e.g...

 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/a/f/af4f32d564d2060e833dcc901a53e0a4be1b3720.png)

so if you instead access that URL and convert from XML to JS object, you can access all the values (and there are lots - happy hunting)

 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/a/5/a56ab6336f2149c6ec58d1f8a56a0e1731830f3f.png)

Demo flow...

```auto
[{"id":"879b872b.68ec38","type":"inject","z":"1062d7f9.08a808","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":700,"y":80,"wires":[["94a468af.1286c8"]]},{"id":"69db9d72.bd3134","type":"debug","z":"1062d7f9.08a808","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1050,"y":140,"wires":[]},{"id":"94a468af.1286c8","type":"http request","z":"1062d7f9.08a808","name":"","method":"GET","ret":"txt","paytoqs":"ignore","url":"http://alloy.geocom.cl/xml/dynamic/merge.xml?svTrack=&dataLogger=&ioConfig=&power=&conn_status=","tls":"","persist":false,"proxy":"","authType":"","x":860,"y":80,"wires":[["a64020e7.94b56","550c6da9.4faa44"]]},{"id":"a64020e7.94b56","type":"xml","z":"1062d7f9.08a808","name":"","property":"payload","attr":"","chr":"","x":890,"y":140,"wires":[["69db9d72.bd3134"]]},{"id":"550c6da9.4faa44","type":"debug","z":"1062d7f9.08a808","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1050,"y":80,"wires":[]}]

```

---

_[View the full topic](https://discourse.nodered.org/t/http-buffer-length/35235)._
