UriTemplates与自定义WCF 4.5 WebHttpBehavior

时间:2014-06-02 22:09:12

标签: c# .net wcf rest uritemplate

我正在实现自定义WCF REST行为,它实现/覆盖基本WebHttpBehavior,但允许使用自定义序列化程序进行REST通信。该代码基于Carlos'工作here

我已经让它运行但事情是我们真的想要使用UriTemplate功能来允许真正的REST-ful URI。有没有人看到这样做或可以提供帮助找到正确的实施?

我们一直坚持使用WCF同时提供REST和SOAP端点,因此不再需要迁移到Web API。

2 个答案:

答案 0 :(得分:0)

我已经开始实现我自己的UriTemplate解析/匹配逻辑了,但后来我偶然发现了这个答案(Using Custom WCF Body Deserialization without changing URI Template Deserialization)并发现它做了这个以及更多。

为了使用它,您仍然必须取消注释与验证未使用UriTemplate相关的代码。我最后还为我的目的重新格式化了一些代码(取出逻辑来检查是否有多个参数,因为在我的用例中,正文总是只有一个参数)。

答案 1 :(得分:-1)

问题可能只是该示例略显过时。此外,实现类NewtonsoftJsonBehavior明确覆盖并在InvalidOperationException方法中抛出Validate(ServiceEndpoint endpoint)

使用Carlos' example,删除验证:

public override void Validate(ServiceEndpoint endpoint)
{
    base.Validate(endpoint);

    //TODO: Stop throwing exception for default behavior.
    //BindingElementCollection elements = endpoint.Binding.CreateBindingElements();
    //WebMessageEncodingBindingElement webEncoder = elements.Find<WebMessageEncodingBindingElement>();
    //if (webEncoder == null)
    //{
    //    throw new InvalidOperationException("This behavior must be used in an endpoint with the WebHttpBinding (or a custom binding with the WebMessageEncodingBindingElement).");
    //}

    //foreach (OperationDescription operation in endpoint.Contract.Operations)
    //{
    //    this.ValidateOperation(operation);
    //}
}

UriTemplate添加到GetPerson或其他方法:

[WebGet, OperationContract]
Person GetPerson();

[WebGet(UriTemplate="GetPersonByName?l={lastName}"), OperationContract(Name="GetPersonByName")]
Person GetPerson(string lastName);

Service类中,添加一个简单的实现来验证参数是否已被解析:

public Person GetPerson(string lastName)
{
    return new Person
    {
        FirstName = "First",
        LastName = lastName, // Return the argument.
        BirthDate = new DateTime(1993, 4, 17, 2, 51, 37, 47, DateTimeKind.Local),
        Id = 0,
        Pets = new List<Pet>
        {
            new Pet { Name= "Generic Pet 1", Color = "Beige", Id = 0, Markings = "Some markings" },
            new Pet { Name= "Generic Pet 2", Color = "Gold", Id = 0, Markings = "Other markings" },
        },
    };
}

Program.Main()方法中,对此新URL的调用将解析并返回我的查询字符串值,而不进行任何自定义实现:

[Request]
SendRequest(baseAddress + "/json/GetPersonByName?l=smith", "GET", null, null);

[Response]
{
"FirstName": "First",
"LastName": "smith",
"BirthDate": "1993-04-17T02:51:37.047-04:00",
"Pets": [
{...},
{...}
}