UriTemplate WCF

本文关键字:WCF UriTemplate | 更新日期: 2023-09-27 17:56:59

有没有一种简单的方法可以在同一定义中拥有多个 UriTemplates。

 [WebGet(UriTemplate = "{id}")]
例如,我希望/API/{

id} 和/API/{id}/调用同一件事。 我不希望最后是否有/无关紧要。

UriTemplate WCF

不是很简单,但您可以在行为中使用操作选择器来去除尾随的"/",如下例所示。

public class StackOverflow_6073581_751090
{
    [ServiceContract]
    public interface ITest
    {
        [WebGet(UriTemplate = "/API/{id}")]
        string Get(string id);
    }
    public class Service : ITest
    {
        public string Get(string id)
        {
            return id;
        }
    }
    public class MyBehavior : WebHttpBehavior
    {
        protected override WebHttpDispatchOperationSelector GetOperationSelector(ServiceEndpoint endpoint)
        {
            return new MySelector(endpoint);
        }
        class MySelector : WebHttpDispatchOperationSelector
        {
            public MySelector(ServiceEndpoint endpoint) : base(endpoint) { }
            protected override string SelectOperation(ref Message message, out bool uriMatched)
            {
                string result = base.SelectOperation(ref message, out uriMatched);
                if (!uriMatched)
                {
                    string address = message.Headers.To.AbsoluteUri;
                    if (address.EndsWith("/"))
                    {
                        message.Headers.To = new Uri(address.Substring(0, address.Length - 1));
                    }
                    result = base.SelectOperation(ref message, out uriMatched);
                }
                return result;
            }
        }
    }
    public static void Test()
    {
        string baseAddress = "http://" + Environment.MachineName + ":8000/Service";
        ServiceHost host = new ServiceHost(typeof(Service), new Uri(baseAddress));
        host.AddServiceEndpoint(typeof(ITest), new WebHttpBinding(), "").Behaviors.Add(new MyBehavior());
        host.Open();
        Console.WriteLine("Host opened");
        WebClient c = new WebClient();
        Console.WriteLine(c.DownloadString(baseAddress + "/API/2"));
        Console.WriteLine(c.DownloadString(baseAddress + "/API/2/"));
        Console.Write("Press ENTER to close the host");
        Console.ReadLine();
        host.Close();
    }
}

这只是部分有用,但新的 WCF Web API 库在 HttpBehavior 上具有一个名为 TrailingSlashMode 的属性,可以将其设置为"忽略"或"重定向"。

我发现最简单的方法是重载函数,如此处所述。