This is a migrated thread and some comments may be shown as answers.

Can any one having Sample apps which use webservice???

5 Answers 55 Views
General Discussion
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
badal
Top achievements
Rank 1
badal asked on 14 May 2013, 12:41 PM
If you are having then p/z send me on blunagariya@ymail.com 

thank you

5 Answers, 1 is accepted

Sort by
0
Keen
Top achievements
Rank 1
answered on 03 Jun 2013, 07:04 AM
Hi Badal,

What Webservice do you used? SOAP or REST?
0
Jan-Dirk
Top achievements
Rank 1
answered on 04 Jun 2013, 11:58 AM
I remember seeing a blog post by someone from Icenium that was demonstrating web services. Check the blog!
0
badal
Top achievements
Rank 1
answered on 10 Jun 2013, 05:25 AM
@keen :REST ....p/z send me demo apps....
0
Steve
Telerik team
answered on 11 Jun 2013, 02:47 PM
Hello Badal,

Icenium is basically an IDE + cloud services to build your app for the supported platforms and it does not impose any specifics or limitation in the way you create your application, web services included.

If you haven’t used web services yet, check this blog post for quick introduction how to consume JSON/JSONP services and of course the jQuery ajax documentation.


Regards,
Steve
Telerik

Looking for tips & tricks directly from the Icenium team? Check out our blog!
Missed our first webinar, watch it here.
Share feedback and vote for features on our Feedback Portal.
0
Markus
Top achievements
Rank 2
answered on 27 Aug 2013, 03:50 PM
Dear badal

Just getting starting - totally new to it - here is some code that finally works for me.

index.html

<ul id="dailyVerse"
                data-source="dataSource"
                data-endlessScroll="false"
                data-template="vTemplate"
                data-role="listview"
                data-style="inset">
                </ul>

Here is my getTheData.js

var dataSource = new kendo.data.DataSource({
    transport:{
        read:{
            url: "http://www.mydomain.com/api/T_dpd_verses/GetTodaysVers/" + dayOfYear + "/" + choosen_language,
            data:{
                Accept: "application/json"
            }
            //  dataType: "json"
        }
    }
    ,
    schema: {
        model: {
            id: "myVerses",
            fields: {
                VDay :{},
                VID :{ type: "string" },
                VLanguage : { type: "string" },
                VText: {  },
                VVers : { type: "string" },
       
            }
        }
                   
    }
                
});

I have a web Site project using OpenAccess and I created the WebAPI automtically by OpenAccess and then changed some stuff.

My problem was the schema. Still not fully understand what is happening when but it works now :-)

Markus
Tags
General Discussion
Asked by
badal
Top achievements
Rank 1
Answers by
Keen
Top achievements
Rank 1
Jan-Dirk
Top achievements
Rank 1
badal
Top achievements
Rank 1
Steve
Telerik team
Markus
Top achievements
Rank 2
Share this question
or