是否可以在运行时更改UriTemplate

时间:2011-09-28 22:14:28

标签: wcf uritemplate webinvoke

我有以下WebInvoke属性:

        [OperationContract]
        [WebInvoke(
        Method         = "POST",
        UriTemplate    = "",
        BodyStyle      = WebMessageBodyStyle.Bare,
        ResponseFormat = WebMessageFormat.Json,
        RequestFormat  = WebMessageFormat.Json)]

我希望根据运行时值设置UriTemplate值。有没有办法在运行时在服务实现中设置UriTemplate?

1 个答案:

答案 0 :(得分:5)

是的,如果您使用在WebHttpBehavior 之前添加的端点行为,则可以这样做。此行为可能会更改WebGetAttribute / WebInvokeAttribute的属性。下面的代码显示了一个更改UriTemplate [WebGet]属性的行为示例,但它对[WebInvoke]也有效。

public class StackOverflow_7590279
{
    [ServiceContract]
    public class Service
    {
        [WebGet(UriTemplate = "/Add?x={x}&y={y}", ResponseFormat = WebMessageFormat.Json)]
        public int Add(int x, int y)
        {
            return x + y;
        }
    }
    public class MyBehavior : IEndpointBehavior
    {
        public void AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters)
        {
        }

        public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
        {
        }

        public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
        {
            foreach (OperationDescription od in endpoint.Contract.Operations)
            {
                if (od.Name == "Add")
                {
                    WebGetAttribute wga = od.Behaviors.Find<WebGetAttribute>();
                    if (wga != null)
                    {
                        wga.UriTemplate = "/Add?first={x}&second={y}";
                    }
                }
            }
        }

        public void Validate(ServiceEndpoint endpoint)
        {
        }
    }
    public static void Test()
    {
        string baseAddress = "http://" + Environment.MachineName + ":8000/Service";
        ServiceHost host = new ServiceHost(typeof(Service), new Uri(baseAddress));
        var endpoint = host.AddServiceEndpoint(typeof(Service), new WebHttpBinding(), "");

        // This has to go BEFORE WebHttpBehavior
        endpoint.Behaviors.Add(new MyBehavior());

        endpoint.Behaviors.Add(new WebHttpBehavior());

        host.Open();
        Console.WriteLine("Host opened");

        WebClient c = new WebClient();
        Console.WriteLine("Using the original template (values won't be received)");
        Console.WriteLine(c.DownloadString(baseAddress + "/Add?x=45&y=67"));

        c = new WebClient();
        Console.WriteLine("Using the modified template (will work out fine)");
        Console.WriteLine(c.DownloadString(baseAddress + "/Add?first=45&second=67"));

        Console.Write("Press ENTER to close the host");
        Console.ReadLine();
        host.Close();
    }
}