使用 WCF 集成工具的 WCF 代理的 Castle Windsor XML 配置
目前,我们使用 WCF 集成工具在 Windsor 容器中使用 WCF 代理的编程注册。例如:
container.Register(
Component.For<CalculatorSoap>()
.Named("calculatorSoap")
.LifeStyle.Transient
.ActAs(new DefaultClientModel
{
Endpoint = WcfEndpoint.FromConfiguration("CalculatorSoap").LogMessages()
}
)
);
有没有办法通过 Windsor XML 配置文件执行相同的操作。我在谷歌上找不到任何这样的样本。
提前致谢
Currently, we use programming registration of WCF proxies in Windsor container using WCF Integration Facility. For example:
container.Register(
Component.For<CalculatorSoap>()
.Named("calculatorSoap")
.LifeStyle.Transient
.ActAs(new DefaultClientModel
{
Endpoint = WcfEndpoint.FromConfiguration("CalculatorSoap").LogMessages()
}
)
);
Is there any way to do the same via Windsor XML configuration file. I can't find any sample of this on google.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Castle WCF 集成设施存储库 (http://github.com/castleproject/Castle.Facilities.Wcf< /a>) 现在包含来自 Windsor 配置文件的 WCF 客户端注册示例:
这就是我正在寻找的内容。
感谢您的帮助。
注意:注意生活方式。在常见情况下,WCF 代理必须具有短暂的生活方式,以便在对象释放时关闭。虽然默认的 Windsor 生活方式是单例,但在这种情况下,WCF 代理将在容器处置时关闭。
问候,安德烈
Castle WCF Integration Facility repository (http://github.com/castleproject/Castle.Facilities.Wcf) now contains sample of WCF client registration from Windsor configuration file:
That is what I was looking for.
Thank you for your help.
Note: pay attention on lifestyle. In common case, WCF proxy must have transient lifestyle to be closed on object release. While default Windsor lifestyle is singleton, in this case WCF proxy will be closed on container disposal.
Regards, Andrej
推荐使用
IWindsorInstaller
并通过代码进行注册。 Config 用于配置(和遗留场景)。我将为此创建两个安装程序,并根据编译标志使用其中之一;
Using
IWindsorInstaller
and doing the registration through code is the recommended way. Config is for configuration (and legacy scenarios).I'd create two installers for this and based on compilation flag use one or the other;