authentication on a wcf rest service json

Authentication on a WCF REST Service using JSON Request

Hello everyone, I am going to share the code sample how rest service authenticate using JSON Request.

Table of Contents

  1. First added to request headers for rest service authenticate.
  2. Encrypt the username and password and added in the heder.
In Step 1

Need to add request headers to authenticate a wcf rest services using json request response. i.e.


beforeSend: function (xhr) 

{
   xhr.setRequestHeader("UserRoleId", "1");
   xhr.setRequestHeader('Authorization Basic ', authenticatedByRequestHeader(username, pwd));

}

In the 2nd Step


Need to encrypt username and password and sent with heeder responses. i.e.

var username = "validate@gmail.com";
var pwd = "validate";


function authenticatedByRequestHeader(username, pwd) 

{
   var token = 
username + ':' + pwd;
   var hashpwd = btoa(token);
   return hashpwd;

}

Example for Authenticate REST WCF Services using JSON AJAX


<script type="text/javascript">

var username = "authenticate@gmail.com";
var pwd = "authen@123#";


function authenticatedByRequestHeader(username, pwd) 
{
   var token = username ':' + pwd;
   var hashpwd = btoa(token);
   return hashpwd;
}

$(document).ready(function () {


$.ajax({
 
url: "https://192.168.1.11/UserService-20120830/GetUserService.svc/REST/",
  type: "post",
  dataType: "json",
  data: {},
 
beforeSend: function (xhr) {
  xhr.setRequestHeader("UserRoleId", "1");
  xhr.setRequestHeader('Authorization Basic ', authenticatedByRequestHeader(username,  pwd));
},contentType: 'application/json',
success: function (result) {
  //Todo: if success, you implement your logic here..
  },
error: function (jqXHR, txtStatus, errorsThrown) {
  var errorMsg = '';
  $('#msg').html(jqXHR.responseText);
}
});
});


</script>

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Authentication on a WCF REST Service using JSON Request Authentication on a WCF REST Service using JSON Request Reviewed by Unknown on 11:13 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^