So, Here is the problem... I'm using a parsing method :
var winnearby_xhr = Titanium.Network.createHTTPClient();
winnearby_xhr.onload = function()
{
var nearby_RText = this.responseXML.documentElement;
var nearby_RestText=nearby_RText.getElementsByTagName("restaurant");
Ti.API.info(nearby_RestText.length);
}
winnearby_xhr.onerror = function(e){alert(e.error);};
winnearby_xhr.open('GET','http://compliantbox.com/goldmenu/mobile/current.php?latitude='+latt+'&longitude='+lon+'&radius='+winnearby_slider1.value+'');
winnearby_xhr.send();
wen the application starts the initial values of "latt" and "lon" are fixed and result a xml output. After a while the the values of "latt" and "lon" will be changed. After they are changed wen i again call :
winnearby_xhr.open('GET','http://compliantbox.com/goldmenu/mobile/current.php?latitude='+latt+'&longitude='+lon+'&radius='+winnearby_slider1.value+'');
winnearby_xhr.send();
the resultant xml is same as the previous one....
wen i checked the link on a webpage it shows a different result htan the previous one. i also checked the link request that is going for the second time and it is also good.
However the value returned by Ti.API.info(nearby_RestText.length); is not changing at all no matter what link i pass after the first parse.
please help me i'm totally blank on what the problem is and how to work on it....
Thank you...
winnearby_xhr.open('GET','http://compliantbox.com/goldmenu/mobile/current.php?latitude='+latt+'&longitude='+lon+'&radius='+winnearby_slider1.value+'');before on load. – Muhammad Zeeshan Jun 22 '11 at 8:33