How to Call WCF RestFul service in another .net appllication

Apr 11 2015 4:13 AM
How to Call WCF ResrFull Service in Another net Project ?
 
My wcf restfull service return  json  format , now i want to call this in another project . how can do this ?
 
 
RestFull Service
                       
                           [WebInvoke(Method = "GET",
                          ResponseFormat = WebMessageFormat.Json,
                          BodyStyle = WebMessageBodyStyle.Bare,
                          UriTemplate = "GetProductList/")]
                          public List<Product> GetProductList()
                         {
                           return Products.Instance.ProductList;
                         }
 
 This service return  output json format .
 
 
 
  
      

Answers (1)