在运行时将WCF服务绑定更改为https

时间:2017-02-17 18:37:23

标签: .net wcf wcf-binding

我们有一个部署到许多客户端的应用程序,其中一些客户端使用http其他https。在设置我们的应用程序时,web.config会自动填充WCF端点,绑定等。我们希望在应用程序启动时将绑定更改为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>

根据我的阅读,可以同时拥有http和https绑定,但我们不希望这样 - 如果它是https,则强制它使用https。

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

1 个答案:

答案 0 :(得分:0)

我知道这是一个古老的问题,但是我遇到了同样的问题,因此未找到任何答案。由于花了我几天时间来解决问题,我认为值得在这里发布。

您通常在此处有3个选择:

1)按照here

的代码完全配置服务主机(忽略* .config)

2)根据here

编写脚本以修改* .config或使用其他配置

3)同时使用* .config和程序绑定配置

选项(3)棘手,因为您必须在创建服务主机后修改服务主机,但之前它会处于打开状态(类似于host.State == Created)。这是因为修改已经打开的主机的绑定无效。更多详细信息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中,您可以覆盖或修改绑定。下面的代码采用第一个注册端点,并用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
        },
    };
}