Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UriTemplate WCF

Tags:

rest

c#

wcf

Is there a simple way to have multiple UriTemplates in the same definition.

 [WebGet(UriTemplate = "{id}")]

For example I want /API/{id} and /API/{id}/ to call the same thing. I don't want it to matter if there is / at the end or not.

like image 674
Adam Avatar asked May 20 '11 14:05

Adam


2 Answers

Not really simple, but you can use an operation selector in your behavior to strip the trailing '/', like in the example below.

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();
    }
}
like image 105
carlosfigueira Avatar answered Sep 21 '22 09:09

carlosfigueira


This is only partially helpful, but the new WCF Web API library has a property on the HttpBehavior called TrailingSlashMode that can be set to Ignore or Redirect.

like image 24
Darrel Miller Avatar answered Sep 19 '22 09:09

Darrel Miller