Find the xmlHttpRequest resource in aspx page
- by DJStroky
I'm trying to find an xmlHttpRequest or similar resource that I can query directly to obtain an xml file for my own purposes. At this site it is possible to browse a Google Map mashup with markers. Unfortunately it is only possible to view all markers at a small view range, whereas I simply want to obtain all the information at once for the entire state. Using the firebug console in firefox I can enter the following javascript line to obtain the xml that I desire:
document.getElementById("stationXML").value
I tracked this document element down to an <input> tag, but I can't figure out how that input is set.
Thanks in advance for your help!