我對sencha touch很陌生,我想在sencha touch中使用soap web服務。我已經爲這個原因編寫了代碼,但問題是我僅僅獲取純HTML內容作爲響應而不是soap對象。而我不知道如何從Web服務調用特定的方法來觸發sencha。如何在SENCHA TOUCH中使用SOAP Web服務?
這裏是我的代碼: -
Ext.Ajax.request({
method: 'get',
url: 'http://192.168.1.15:80/himanshu/helloworldwebservice.asmx',
success: function (response, request) {
alert('Working!')
alert(response.responseText)
console.log('Response:-'+response.responseText)
},
failure: function (response, request) {
alert('Not working!')
console.log('Response Status:- '+response.status)
}
});
編輯: -好吧,我計上心來調用Web服務的具體方法從here。就像我有HelloWorld()
方法,該方法只返回一個字符串和我網址是http://192.168.1.15:80/himanshu/helloworldwebservice.asmx
。 我可以通過設置我的網址是這樣叫的HelloWorld()方法: - http://192.168.1.15:80/himanshu/helloworldwebservice.asmx/HelloWorld
但它不工作的時間me.Every我運行該程序「不工作」的警報生成和是響應統計我得到請讓我明白,我怎麼能提前從webservice.Thanx調用方法。
看到這個[鏈接](http://stackoverflow.com/questions/11556508/web-服務呼叫,即從工作 - 但它不工作在鉻和mozilla)在有些日子之前我發現了同樣的問題,然後得到解決方案。 – 2012-07-21 05:58:06