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

authentication service

1 Answer 87 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Maor
Top achievements
Rank 1
Maor asked on 11 Jun 2013, 08:11 AM
hi guys.
during  the usage of  icenium, kendo mobile and kendo web i have created mobile application that handle kendo grid. the grid get data using kendo datasource and webservice in asp.net web application that provide the data. now i need to secure data transport by user name and password but i didnt find example or tutorial how to do so.
can you point me a good solution to this?
what is the common method to secure web services? how can i send username and password in encrypted way before reading data?
thanks
maor

1 Answer, 1 is accepted

Sort by
0
Alexander Valchev
Telerik team
answered on 12 Jun 2013, 04:26 PM
Hi Maor,

I am afraid that your question is not directly related to the functionality or features that Kendo UI offers. Security related or data encryption guidelines are out of the scope of our standard support services.

As a general information, in order to send additional parameters (such as username/password) with DataSource transport requests, you can use the jQuery.ajax data object or parameterMap function.

For example:
var dataSource = new kendo.data.DataSource({
    transport: {
        read: {
          url: "....",
          dataType: "json",
          data: { user: "user01", pass: "pass1234" }
        }
    }
});


Regards,
Alexander Valchev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
General Discussions
Asked by
Maor
Top achievements
Rank 1
Answers by
Alexander Valchev
Telerik team
Share this question
or