在运行时动态更新WCF路由服务配置

时间:2014-06-12 14:30:21

标签: c# wcf iis wcf-routing

我一直关注MSDN上的WCF路由服务教程:

Dynamic Configuration
Source(见下面的代码)

在尝试将控制台示例转换为IIS托管原型之后非常痛苦,我现在有了一个WCF路由服务,根据教程,每5秒更新一次配置。

我现在需要从网页触发此更新,而不是每5秒钟自动更新一次,但找不到任何如何执行此操作的示例。像管理屏幕一样处理存储在DB中的端点的CRUD操作。如果用户对配置进行了更改,则路由服务将需要动态更新其配置。

显然你可以使用UDP公告和发现服务做这样的事情,但我不希望触发从另一个应用调用的更新的简单端点就足够了。

如何获取对路由服务UpdateBehavior的引用,以便手动调用UpdateRules方法?

using System;
using System.Collections.Generic;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Configuration;
using System.ServiceModel.Description;
using System.ServiceModel.Dispatcher;
using System.ServiceModel.Routing;
using System.Threading;

namespace ErpRoutingService
{
    public class UpdateBehavior : BehaviorExtensionElement, IServiceBehavior
    {
        void IServiceBehavior.AddBindingParameters(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase, System.Collections.ObjectModel.Collection<ServiceEndpoint> endpoints, BindingParameterCollection bindingParameters)
        {
        }

        void IServiceBehavior.ApplyDispatchBehavior(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase)
        {
            RulesUpdateExtension rulesUpdateExtension = new RulesUpdateExtension();
            serviceHostBase.Extensions.Add(rulesUpdateExtension);
        }
        void IServiceBehavior.Validate(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase)
        {
        }

        class RulesUpdateExtension : IExtension<ServiceHostBase>, IDisposable
        {
            bool primary = false;
            ServiceHostBase owner;
            Timer timer;

            void IExtension<ServiceHostBase>.Attach(ServiceHostBase owner)
            {
                this.owner = owner;
                //Call immediately, then every 5 seconds after that.
                this.timer = new Timer(this.UpdateRules, this, TimeSpan.Zero, TimeSpan.FromSeconds(5));
            }

            void IExtension<ServiceHostBase>.Detach(ServiceHostBase owner)
            {
                this.Dispose();
            }

            public void Dispose()
            {
                if (this.timer != null)
                {
                    this.timer.Dispose();
                    this.timer = null;
                }
            }

            void UpdateRules(object state)
            {
                //Updating Routing Configuration
                RoutingConfiguration rc = new RoutingConfiguration();

                var inspector = new ErpMessageInspectorBehavior();

                if (this.primary)
                {
                    ServiceEndpoint endPoint101 = new ServiceEndpoint(
                    ContractDescription.GetContract(typeof(IRequestReplyRouter)),
                    new BasicHttpBinding(),
                    new EndpointAddress("http://meldev:62395/ErpIntegrationService.svc"));
                    endPoint101.EndpointBehaviors.Add(inspector);
                    rc.FilterTable.Add(new MatchAllMessageFilter(), new List<ServiceEndpoint> { endPoint101 });                    
                }
                else
                {
                    ServiceEndpoint endPoint102 = new ServiceEndpoint(
                        ContractDescription.GetContract(typeof(IRequestReplyRouter)),
                        new BasicHttpBinding(),
                        new EndpointAddress("http://meldev:62396/ErpIntegrationService.svc"));
                    endPoint102.EndpointBehaviors.Add(inspector);
                    rc.FilterTable.Add(new MatchAllMessageFilter(), new List<ServiceEndpoint> { endPoint102 });                    
                }

                this.owner.Extensions.Find<RoutingExtension>().ApplyConfiguration(rc);


                this.primary = !this.primary;
            }
        }

        public override Type BehaviorType
        {
            get { return typeof(UpdateBehavior); }
        }

        protected override object CreateBehavior()
        {
            return new UpdateBehavior();
        }
    }    
}

3 个答案:

答案 0 :(得分:0)

从您的ServiceHost实例开始,这很简单:

var updateBahvaior = serviceHost.Description.Behaviors.Find<UpdateBehavior>();

然后,如果你公开一个从内部私有类调用UpdateRules方法的方法,你可以调用它。

答案 1 :(得分:0)

您可能必须在自定义类中使用公共静态变量...

答案 2 :(得分:0)

在线找到了此文档。 https://docs.microsoft.com/en-us/dotnet/framework/wcf/feature-details/routing-introduction#dynamic-configuration

RoutingExtension ApplyConfiguration在这里会有所帮助。

附加代码段。 enter image description here