Representational State Transfer (REST) is not SOAP based Service and it  exposing a public API over the internet to handle CRUD operations on data. REST  is focused on accessing named resources through a single consistent interface  (URL). REST uses these operations and other existing features of the HTTP  protocol:
 	- GET
  	- POST
  	- PUT
  	- DELETE
  
 From developer's points of view, it is not as simple as handling the Object  based Module which is supported when we create SOAP url as reference or create  WSDL proxy.
 
 But .NET does have Class to deal with JSON restful service.
 
 This document will only cover "how to deal JSON response as a Serialized Object  for READ/WRITE & convert JSON object into meanful Object".
 
 In order to consumer JSON Restful service , we need to do follow steps.
  	- Create the RestfUL request URI.
  	- Post URI and get the response from “HttpWebResponse” .
  	- Convert ResponseStreem into Serialized object from  “DataContractJsonSerialized” function.
  	- Get the particular results/items from Serialized Object.
  
 This is very generic function which can be used for any rest service to post and  get the response and convert in:
 
- public static object MakeRequest(string requestUrl, object JSONRequest, string JSONmethod, string JSONContentType, Type JSONResponseType) {  
 -   
 -     try {  
 -         HttpWebRequest request = WebRequest.Create(requestUrl) as HttpWebRequest;  
 -           
 -         string sb = JsonConvert.SerializeObject(JSONRequest);  
 -         request.Method = JSONmethod;  
 -           
 -         Byte[] bt = Encoding.UTF8.GetBytes(sb);  
 -         Stream st = request.GetRequestStream();  
 -         st.Write(bt, 0, bt.Length);  
 -         st.Close();  
 -   
 -   
 -         using(HttpWebResponse response = request.GetResponse() as HttpWebResponse) {  
 -   
 -             if (response.StatusCode != HttpStatusCode.OK) throw new Exception(String.Format(  
 -                 "Server error (HTTP {0}: {1}).", response.StatusCode,  
 -             response.StatusDescription));  
 -   
 -               
 -             StreamReader sr = new StreamReader(stream1);  
 -             string strsb = sr.ReadToEnd();  
 -             object objResponse = JsonConvert.DeserializeObject(strsb, JSONResponseType);  
 -   
 -             return objResponse;  
 -         }  
 -     } catch (Exception e) {  
 -   
 -         Console.WriteLine(e.Message);  
 -         return null;  
 -     }  
 - }  
 
  to object.