REST Service with WCF – Testing with Fiddler

In this article I am explaining simple REST service which can accept HTTP GET Request.In response to this request service return data in XML format.You could use return type as Json format as well.This can easily set with WCF interface attribute as  ResponseFormat = WebMessageFormat.Xml.And if you associate your return type  with DataContract attribute System.Runtime.Serialization…

Read More →