Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to consume SOAP web service in SENCHA TOUCH?
    primarykey
    data
    text
    <p>I am new to sencha touch and i want to consume soap web service in sencha touch.I have written code for this cause, but the problem is that I am getting just plain HTML content as response not the soap object. And I dont know how to call a specific method from web service to sencha touch.</p> <p>Here's my code :- </p> <pre><code>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) } }); </code></pre> <p><strong>EDIT:-</strong> Ok i got the idea to call a specific method from web service from <a href="http://www.c-sharpcorner.com/Forums/Thread/120707/load-Asp-Net-web-service-response-in-sencha-touch-data-store.aspx" rel="nofollow">here</a>.Like i have <code>HelloWorld()</code> method which only returns a single string and my url is <code>http://192.168.1.15:80/himanshu/helloworldwebservice.asmx</code>. I can call HelloWorld() method by setting my url like this :- <code>http://192.168.1.15:80/himanshu/helloworldwebservice.asmx/HelloWorld</code></p> <p>But its not working for me.Every time i run the program 'Not Working' alert generates and <strong>500</strong> is the response stats i gets.Please make me understand that how can i call methods from webservice.Thanx in advance.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload