2

我试图让 Castle Windsor DI 与作为 Windows 服务托管的 WCF 服务一起工作。我已经采用了这里的方法

使用 Castle.Windsor 3.0 问题作为 Windows 服务托管的 WCF 服务库

但是我遇到的问题是,如果我的服务实现类没有默认的无参数构造函数,ServiceHost 将不允许我在 OnStart() 中创建 this 的实例。如果我提供无参数构造函数,服务控制台会使用该构造函数启动服务,因此我不会注入任何依赖项。

下面的代码

public class WindowsService : ServiceBase
    {
        public ServiceHost ServiceHost;

        public WindowsService()
        {
            ServiceName = "CRMCustomerService";
        }

        public static void Main()
        {
            // Bootstrap the Castle Windsor DI setup
            Run(CreateContainer().Resolve<ServiceBase>());
        }

        #region Service methods

        protected override void OnStart(string[] args)
        {
            if (ServiceHost != null)
            {
                ServiceHost.Close();
            }

            ServiceHost = new ServiceHost(typeof(CustomerService));
            ServiceHost.Open();
        }

        protected override void OnStop()
        {
            if (ServiceHost != null)
            {
                ServiceHost.Close();
                ServiceHost = null;
            }
        }


        #endregion

        #region Private Methods

        private static IWindsorContainer CreateContainer()
        {
            var container = new WindsorContainer();
            container.Install(FromAssembly.This());
            return container;
        }

        #endregion
    }

[ServiceBehaviorAttribute(InstanceContextMode = InstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Single)]
    public class CustomerService : ICustomerService
    {
        private readonly IDataRepository _repository;
        private readonly ILogger _logger;

        public CustomerService(IDataRepository repository)
        {
            _repository = repository;
            _logger = new RootLogger(Level.Error);
        }
}

public class ServicesInstaller : IWindsorInstaller
    {
        public void Install(IWindsorContainer container, IConfigurationStore store)
        {
            container
                .AddFacility<WcfFacility>(f =>
                                              {
                                                  f.CloseTimeout = TimeSpan.Zero;
                                              })
                .Register(
                    Component
                        .For<IDataRepository>()
                        .ImplementedBy<CustomerRepository>()
                        .LifeStyle.Transient
                        .AsWcfService(),
                    Component.For<ServiceBase>().ImplementedBy<WindowsService>());
        }
    }

谁能看到我做错了什么?我想在服务启动和创建 WCF 服务实例时引导 Windsors DI 容器,以便在该点注入依赖项。

4

3 回答 3

1

1)您应该有两个构造函数,正如另一张海报所建议的那样,一个是默认的,一个是您的依赖项作为参数。

2)正如您在链接到您的帖子中看到的那样,您应该使用 Castle 的 WCF 设施来托管服务(请注意AsWcfService您链接到的帖子中的语法)。您所要做的就是编写 Castle 代码,注册所有服务依赖项,Castle 会处理其余的事情。这几乎就像魔术一样!

于 2014-10-02T23:55:50.537 回答
0

你可以有两个构造函数。无参数调用将依赖项作为参数的重载。

public WindowsService()
    this(new ServiceHost());

public WindowsService(ServiceHost serviceHost)
{ 
    this.ServiceHost = serviceHost;
}  
于 2013-10-18T13:10:55.327 回答
0

您可以使用所需的构造函数实例化服务实现并将其作为参数传递给服务主机,例如

var service = CustomerService(container.Resolve<IDataRepository>());
ServiceHost = new ServiceHost(service);

甚至像这样,如果您正确配置了容器:

var service = container.Resolve<ICustomerService>();
ServiceHost = new ServiceHost(service);

但是在这种情况下,它将在单例模式下工作,并且我记得您需要将服务实现的InstanceContextMode更改为Single

于 2013-10-18T13:56:58.187 回答