Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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...

share|improve this question
Prateek: may be your lat, long values are not much different from the previous, try completely different lat, long and check. – Muhammad Zeeshan Jun 22 '11 at 5:10
@Muhammad Zeeshan hi, I tried even that one too, what i observed is the value returned by "this.responseXML.documentElement;" is not changing at all, no matter what i pass in the link... – Prateek Raj Jun 22 '11 at 7:20
not confirmed but try after writing this line winnearby_xhr.open('GET','http://compliantbox.com/goldmenu/mobile/current.php?l‌​atitude='+latt+'&longitude='+lon+'&radius='+winnearby_slider1.value+''); before on load. – Muhammad Zeeshan Jun 22 '11 at 8:33
maybe you should post more code? – Aaron Saunders Jun 22 '11 at 12:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.