c# - 如何在代码中使用 wsDualHttpBinding 设置 WCF 客户端?

标签 c# wcf app-config

我需要连接到我编写的 WCF 服务,而不必为我正在编写的客户端应用程序部署 app.config。但是,我一直很难弄清楚如何在代码中从客户端进行设置。据我所知……有没有人知道我需要做什么才能让它发挥作用?我真的很感激。

这是我目前得到的代码:

    String baseAddress = "http://localhost/CommService";

    WSDualHttpBinding binding = new WSDualHttpBinding();
    binding.Name = "WSDualHttpBinding_ICommService";
    binding.ClientBaseAddress = new Uri(baseAddress);
    binding.ReliableSession.Ordered = true;
    binding.ReliableSession.InactivityTimeout = new TimeSpan(0, 10, 0);
    binding.ReceiveTimeout = new TimeSpan(0, 10, 0);
    binding.SendTimeout = new TimeSpan(0, 0, 5);

    InstanceContext context = new InstanceContext(this);
    client = new CommServiceClient(context, "WSDualHttpBinding_ICommService");
    client.Endpoint.Binding = binding;

这是我的客户端应用程序的 app.config:

<system.serviceModel>
    <bindings>
        <wsDualHttpBinding>
            <binding name="WSDualHttpBinding_ICommService" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:00:05"
                bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true">
                <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <reliableSession ordered="true" inactivityTimeout="00:10:00" />
                <security mode="Message">
                    <message clientCredentialType="Windows" negotiateServiceCredential="true"
                        algorithmSuite="Default" />
                </security>
            </binding>
        </wsDualHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost/CommService/"
            binding="wsDualHttpBinding" bindingConfiguration="WSDualHttpBinding_ICommService"
            contract="Services.ICommService" name="WSDualHttpBinding_ICommService">
            <identity>
                <dns value="localhost" />
            </identity>
        </endpoint>
    </client>
</system.serviceModel>

最佳答案

你可以轻松实现你想要的。请参阅下面的代码:

 Uri baseAddress = new Uri("http://localhost/CommService");
 WSDualHttpBinding wsd = new WSDualHttpBinding();
 EndpointAddress ea = new EndpointAddress(baseAddress, EndpointIdentity.CreateDnsIdentity("localhost"));
 client  = new CommServiceClient(new InstanceContext(this), wsd, ea);

让我解释一下:

  • 首先,我们使用默认设置创建一个 WSDualHttpBinding 实例(这些设置与生成的 app.config 完全相同)。如果您想修改任何设置,可以通过公开的属性进行修改。
  • 然后我们使用所需的 URL 和身份创建一个 EndPointAddress。无需将其与绑定(bind)链接,因为我们将在服务客户端构造函数中链接所有这些。
  • 最后我们创建服务客户端。构造函数重载之一允许我们指定绑定(bind)和端点地址。
  • 通常,app.config 文件中的每个可用元素在 .NET 代码中都有一个关联的类,并且每个属性或子元素在指定类中都有一个关联的属性。

关于c# - 如何在代码中使用 wsDualHttpBinding 设置 WCF 客户端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/497209/

相关文章:

c# - 帮助解决简单的 restful post 问题

wcf - HttpContext.Current.Request.RawUrl的WCF等效项是什么?

c# - 增量 Nuget 包版本 NetStandard 本地文件夹 visual studio 2017

c# - 使用 LINQ 插入数据库

C# snippet 创建片段

c# - Unity,脚本预制件中的私有(private)值未更新

c# - 如何仅从接口(interface)和方法名称调用方法?

c# - 安装 .NET Framework 4.5 后 HttpContext.Current.User 为空

c# - ConfigurationManager.GetSection 返回 null

c#-4.0 - Entity Framework 4.1 修改每个开发人员单元测试环境的连接字符串