Hello All,
I need to perform ajax request like
- var requestType = 'GET' ;
- var serverUrl = "http://192.168.1.150:9051/something.xml" ;
- var requestData = "<hello></hello>";
- $.ajax({
- cache : false,
- type : requestType,
- async : false,
- url : serverUrl,
- data : requestData,
- dataType : "xml",
- success : function(xml) {},
- error : function(xhr, ajaxOptions, thrownError) {
- alert("Error while loading Service !!!");
- }});
I am not able to do it on Blackberry OS 5.0... As ajax is not supported by BB OS 5 web browser...
How to do it? Is there any workaround for this?