I'm having an issue with the responseXML in my AJAX code. Here is an excerpt from my callback function:
var lineString = responseXML.getElementsByTagName('linestring')[0].firstChild.nodeValue;
The problem I'm facing is that the linestring can only store a maximum of 4096 characters, causing any additional characters to be rejected.
I'm unsure how to retrieve all the values returned by the lineString. It contains a substantial amount of data, which led me to use responseXml in AJAX. Unfortunately, it seems unable to handle the entirety of the data.
My linestring comprises lines extracted from a logfile, concatenated and separated accordingly. The aim is to incorporate this data into my form; hence, after retrieving it via PHP, I send it back using AJAX.
Any suggestions or advice would be greatly appreciated.