Hi
can you please tell me how to call soap based web service , actually i am getting null response while using this code,
var options = { url: 'http://184.106.159.143:8080/FirstGroupRailApps/services/RailAppsCAWS/getDestinationStationDashboard', method: "POST", params: { param1:"AAP", }, callback: function(options, success, response){ if (success) { alert("Hi"); console.log(response); console.log(response.responseXML); var store = new Ext.data.XmlStore({ storeId: 'getDestinationStationDashboardResponse',//what is storeID? autoLoad: true, autoDestroy: true, data: response.responseXML, //record: 'root',//idPath: 'ID',//ID path//fields: ...,//sortInfo: {// field: 'ID',// direction: 'DESC'//} }); } else { alert("Bye"); for (var prop in response) { air.trace(prop + " = " + response[prop]); } } }};Ext.Ajax.request( options );
I implement the same web service but in different way i getting the response, http://supportforums.blackberry.com/t5/Web-and-WebWorks-Development/why-it-goes-to-if-condiation/m-p/1911581#M29196
Hi i am getting null response . But when i call same web service different way i got the response .But in need to call this web service using jquery or ajax. This is my code.