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 GetProductList()
{
return Products.Instance.ProductList;
}
This service return output json format .
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.

Vineet KumarPosted Apr 11, 2015, 6:20 AM