08-27-2009 02:50 AM
Hello muke80,
on the N97 cross-domain calls are allowed. The BlackBerry browser does not execute such calls. Therefore this might be your issue.
09-21-2009 06:49 PM
The real culprit is request.open function's url parameter. The whole thing will work if you'll omit the domainname i.e. instead of calling
request.open('GET', 'http://something.com/<yoururl>', true);
just call
request.open('GET','/<yoururl>',true);
Let me know if it works.