- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我需要连接到我编写的 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);
让我解释一下:
关于c# - 如何在代码中使用 wsDualHttpBinding 设置 WCF 客户端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/497209/
谁能告诉我如何wsDualHttpBinding工作以及套接字和 wsDualHttpBinding 之间的区别究竟是什么? 我认为微软做得很好。我从没想过一个 Web 服务能够在它希望的时候再次调用
将 WSDualHttpBinding 用于双工回调是否适用于实际场景?比如说,我有一个使用随机端口的 .NET 应用程序,该服务是否能够解析客户端的基地址和端口以进行回调? 最佳答案 您的问题的完整
这个问题已经被反复问过,但无论人们的项目采用什么解决方案,它都不适合我。 我有一个 WsDualHttpBinding 来从客户端调用服务。我的客户端配置是这样的: 我的客
我目前正在开发多项服务 (WCF) 以使用 TFS 2010。 其中一些使用事件订阅工具,而另一些则通过sharepoint 门户、小型wpf 应用程序等进行消费。 我正在开发一个应用程序来管理另一台
我有一个使用 wsDualHttpBinding 的 wcf 服务,当我尝试使用同一域中的不同 pc 连接到它时出现该错误。 这是我的客户端配置:
我正在尝试使用 WCF 编写主机/客户端样式系统,目前我想使用 wsHttpBinding,但是当我读到这一行时,我正在阅读其他内容(isOneWay bool): 'HTTP 不能用于回调,因此您不
我实现了一个 WCF 服务来完成一些长期任务。它需要向客户端提供有关该长任务当前进度的通知。到目前为止它运行良好,但问题是: 当用户关闭客户端应用程序,然后再次打开它时,客户端应用程序应该再次开始从服
我需要连接到我编写的 WCF 服务,而不必为我正在编写的客户端应用程序部署 app.config。但是,我一直很难弄清楚如何在代码中从客户端进行设置。据我所知……有没有人知道我需要做什么才能让它发挥作
我有一个独立的 WCF 服务在防火墙后面的服务器上运行。它目前使用 wsDualHttpBinding因为服务使用回调。客户端在 LAN 环境中工作正常。我们已打开防火墙以允许自定义端口上的流量,因此
仍在 WCF 学习曲线上: 我已经设置了一个自承载的 WCF 服务 (WSDualHttpBinding),它在我自己的计算机上运行良好,它位于防火墙后面。如果我在自己的计算机上运行客户端,一切都会很
我们有一个在 Windows 服务上运行的具有多个绑定(bind)的 WCF 应用程序,该应用程序在 Intranet 环境中按预期工作,但是当我们将解决方案部署到 Windows Azure VM
我完全陷入困境。 我在一台机器上获得了 Web 服务。 Web 服务有两个“服务”(或绑定(bind)?),一个是普通的“basicHttpBinding”,另一个是“wsDualHttpBindin
我是一名优秀的程序员,十分优秀!