Кажется, что не хватает примеров того, как написать клиент WCF для службы JSON REST. Кажется, что все используют WCF для реализации сервиса, но вряд ли когда-либо для написания клиента. Итак, вот довольно полный пример службы (реализующей запрос GET и POST) и клиента.
Услуги
Сервисный интерфейс
[ServiceContract]
public interface IService1
{
[OperationContract]
[WebGet(ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = "/getcar/{id}")]
Car GetCar(string id);
[OperationContract]
[WebInvoke(RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = "/updatecar/{id}")]
Car UpdateCar(string id, Car car);
}
Сервисные структуры данных
[DataContract]
public class Car
{
[DataMember]
public int ID { get; set; }
[DataMember]
public string Make { get; set; }
}
Реализация услуги
public class Service1 : IService1
{
public Car GetCar(string id)
{
return new Car { ID = int.Parse(id), Make = "Porsche" };
}
public Car UpdateCar(string f, Car car)
{
return car;
}
}
Сервисная наценка
<%@ ServiceHost Language="C#" Service="JSONService.Service1"
CodeBehind="Service1.svc.cs"
Factory="System.ServiceModel.Activation.WebServiceHostFactory" %>
Web.config
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
Клиент
А теперь клиент. Он использует интерфейс IService1
и класс Car
. Кроме того, требуется следующий код и конфигурация.
App.config
<?xml version="1.0"?>
<configuration>
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="webby">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<client>
<endpoint address="http://localhost:57211/Service1.svc" name="Service1" binding="webHttpBinding" contract="JSONService.IService1" behaviorConfiguration="webby"/>
</client>
</system.serviceModel>
</configuration>
Program.cs
public class Service1Client : ClientBase<IService1>, IService1
{
public Car GetCar(string id)
{
return base.Channel.GetCar(id);
}
public Car UpdateCar(string id, Car car)
{
return base.Channel.UpdateCar(id, car);
}
}
class Program
{
static void Main(string[] args)
{
Service1Client client = new Service1Client();
Car car = client.GetCar("1");
car.Make = "Ferrari";
car = client.UpdateCar("1", car);
}
}
Веселитесь.