I'm having difficulty consuming a WCF REST service, which returns JSON, in a C# ASP.NET MVC application. I'm trying to consume the service in a Controller. I have a ASP.NET MVC project and a service project in the same solution. I've created an entry in my local IIS which points to the service project (i.e. http://localhost/SampleService/).The WCF Service works because I can access the URL and the correct JSON is returned.
Does anyone have any code samples on consuming the JSON via a Controller from a RESTful WCF Service?