Hybrid View
-
15 Dec 2010 1:46 AM #1
External Web Service integration with Sencha Touch
External Web Service integration with Sencha Touch
Hi,
I am new to Sencha Touch and working on a Case management web application using Sencha Touch. I want to know if how we can integrate External Web service with Sencha Touch. If someone worked on anything similiar or have any documentation, please share it with me.
Thanks,
Ajay Taksali
-
15 Dec 2010 5:17 AM #2
I worked with external webservices over JSONP. You can find a example in the Kitchen Sink Demo.
-
15 Dec 2010 8:15 AM #3
Thanks Savelee for your response.
I want to integrate SOA based web services call with complex data model. Is this possible with JSONP. Do we have any other way to handle it using Java code within Java Script like DWR ...
-
15 Dec 2010 8:37 AM #4
Hey,
I don't know exactly how the webservice has been build. We worked with a third party who delivered this service. (.NET / WSDL)
They fixed it, so it can handle JSONP. - And receive url parameters.
I can just show you an example on the frontend:
good luck with itCode:getLatestArticleByCategory: function(strCat){ Ext.util.JSONP.request({ url: 'webservice-url-here', callbackKey: 'callbackLatestArticles', params: { category: strCat, articlecount: 10 }, callback: function(data) { //do something with data } }); },
-
15 Dec 2010 8:40 AM #5
-
15 Dec 2010 11:35 AM #6
You will likely need to implement SOAP on the client side. Afaik, this is not in the sencha lib... I havent seen it.
Do a google search for "javascript soap"... there a libraries out there that (I suspect) will do it, but its a pain to implement from scratch.
Or.. maybe the thirdparty app can get updated to support a simple json protocol?
DoJeff Crilly's work persona
Similar Threads
-
Sencha Touch MVC framework and SCSS integration guides
By lexer in forum Sencha Touch 1.x: DiscussionReplies: 10Last Post: 5 Apr 2011, 10:53 PM -
Looking for a Sencha Touch Developer to create an awesome web app!
By WeFeast in forum Sencha Touch 1.x: DiscussionReplies: 0Last Post: 7 Nov 2010, 12:10 AM -
jqplot and sencha touch integration
By fgeorge in forum Sencha Touch 1.x: DiscussionReplies: 0Last Post: 16 Oct 2010, 9:28 AM -
Touch & Web Service
By kortovos in forum Sencha Touch 1.x: DiscussionReplies: 3Last Post: 16 Sep 2010, 12:04 AM -
Sencha Touch web apps - on the desktop
By Frank R in forum Sencha Touch 1.x: DiscussionReplies: 1Last Post: 29 Jul 2010, 7:33 AM


Reply With Quote