gpt4 book ai didi

wcf - 使用 Windsor 创建 WCF 服务时出现问题

转载 作者:行者123 更新时间:2023-12-02 00:39:51 28 4
gpt4 key购买 nike

有谁知道如何在 IIS 7.0 上使用 Windsor 配置 WCF?我正在使用 WCF Windsor facility trunk 和 Windsor 2.1.1 的最新版本。 http://www.castleproject.org/container/facilities/trunk/wcf/index.html 上的示例过时了。甚至 WCF 设施中的演示项目也没有提到如何使用配置在 IIS 中设置 WCF 服务,我找不到任何可以使用 web.config 的 system.serviceModel 部分甚至通过代码在服务器端设置 WCF 的示例。当我使用以下代码时,它总是会创建 basicHttpBinding 并且我不知道如何设置不同的绑定(bind)。

protected void Application_Start(object sender, EventArgs e)
{
var returnFaults = new ServiceDebugBehavior
{
IncludeExceptionDetailInFaults = true,
HttpHelpPageEnabled = true
};

var metadata = new ServiceMetadataBehavior {HttpGetEnabled = true};

container = new WindsorContainer()
.AddFacility<WcfFacility>()
.Register(
Component.For<IServiceBehavior>().Instance(returnFaults),
Component.For<IServiceBehavior>().Instance(metadata),
Component.For<IMyService>()
.Named("MyService")
.ImplementedBy<MyService>()
.LifeStyle.Transient
);
}

这是 MyService.svc

<%@ ServiceHost Language="C#" Debug="true" Service="MyService" 
Factory="Castle.Facilities.WcfIntegration.DefaultServiceHostFactory, Castle.Facilities.WcfIntegration" %>

最佳答案

我最近写了一个blog post about Windsor's WCF Facility .一定要阅读评论,因为它们包括涉及 Windsor 的一位活跃提交者的讨论;他们应该会给你一个很好的 future 方向印象。

关于wcf - 使用 Windsor 创建 WCF 服务时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2958309/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com