gpt4 book ai didi

.net - 在运行时将 WCF 服务绑定(bind)更改为 https

转载 作者:行者123 更新时间:2023-12-02 04:36:20 26 4
gpt4 key购买 nike

我们有一个部署到许多客户端的应用程序,其中一些使用 http 其他 https。在设置我们的应用程序时,web.config 会自动填充 WCF 端点、绑定(bind)等。我们希望在应用程序启动时将绑定(bind)更改为 https - 而无需修改 .config 文件。这可能吗?例如我们的 .config 文件看起来像(这是一个片段):

  <service behaviorConfiguration="Figment.Services.Business.ObjectInfo.ObjectInfoServiceBehavior" name="Figment.Services.Business.ObjectInfo.ObjectInfoService">
<endpoint address="" binding="basicHttpBinding" bindingNamespace="http://Figment.com/webservices/" contract="Figment.Business.Core.ObjectInfo.IObjectInfoService" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>

据我所知,可以同时绑定(bind) http 和 https,但我们不希望这样 - 如果它是 https,则强制它使用 https。

更改应在服务启动时在 c# 中完成,并在服务运行时永久生效。

最佳答案

我知道这是一个老问题,但我遇到了同样的问题并且在 SO 上找不到答案。由于我花了几天的时间来解决这个问题,所以我认为值得在这里发布。

这里通常有 3 个选项:

1) 根据 here 在代码中完全配置您的服务主机(忽略 *.config)

2) 根据here 编写脚本修改*.config 或使用其他配置

3) 同时使用 *.config 和编程绑定(bind)配置

选项 (3) 很棘手,因为您必须在服务主机创建之后修改它,但 之前 它会打开(类似于 host.State == Created).这是因为修改已经打开的主机的绑定(bind)没有效果。更多详情 here .

要获得 (3) 工作,您必须使用自定义主机工厂。示例标记:

<%@ ServiceHost 
Language="C#"
Debug="true"
CodeBehind="MyService.svc.cs"
Service="Namespace.MyService, MyService"
Factory="Namespace.MyWcfHostFactory, MyService"
%>

MyWcfHostFactory 应该继承 ServiceHostFactory 并扩展/覆盖 CreateServiceHost 方法。我正在使用 DI 框架 ( Autofac ) 来简化一些事情。所以MyWcfHostFactory只是继承了AutofacHostFactory。启动代码(从 Global.asax Application_StartMyWcfHostFactory 的静态构造函数调用):

var builder = new ContainerBuilder();

// Register your service implementations.
builder.RegisterType< Namespace.MyService>();

// Set the dependency resolver.
var container = builder.Build();
AutofacHostFactory.Container = container;
AutofacHostFactory.HostConfigurationAction = (host => PerformHostConfiguration(host));

PerformHostConfiguration 中,您可以覆盖或修改绑定(bind)。下面的代码采用第一个注册端点并将其绑定(bind)替换为 https 之一:

/// <summary> This is used as a delegate to perform wcf host configuration - set Behaviors, global error handlers, auth, etc </summary>
private static void PerformHostConfiguration(ServiceHostBase host) {
var serviceEndpoint = host.Description.Endpoints.First();
serviceEndpoint.Binding = new BasicHttpBinding {
ReaderQuotas = {MaxArrayLength = int.MaxValue},
MaxBufferSize = int.MaxValue,
MaxReceivedMessageSize = int.MaxValue,
Security = new BasicHttpSecurity {
Mode = BasicHttpSecurityMode.Transport, //main setting for https
},
};
}

关于.net - 在运行时将 WCF 服务绑定(bind)更改为 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42305171/

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