WCF 在运行时更改端点地址
Posted
技术标签:
【中文标题】WCF 在运行时更改端点地址【英文标题】:WCF change endpoint address at runtime 【发布时间】:2011-07-06 06:48:21 【问题描述】:我的第一个 WCF 示例正在运行。我在一个有很多绑定的网站上有主机。因此,我已将此添加到我的 web.config 中。
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
这是我的默认绑定http://id.web,它适用于以下代码。
EchoServiceClient client = new EchoServiceClient();
litResponse.Text = client.SendEcho("Hello World");
client.Close();
我现在尝试在运行时设置端点地址。即使是上面代码的同一个地址。
EchoServiceClient client = new EchoServiceClient();
client.Endpoint.Address = new EndpointAddress("http://id.web/Services/EchoService.svc");
litResponse.Text = client.SendEcho("Hello World");
client.Close();
我得到的错误是:
The request for security token could not be satisfied because authentication failed.
请建议我如何在运行时更改端点地址?
这是我的客户端配置,应 Ladislav Mrnka 的要求
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IEchoService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="None" />
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://id.web/Services/EchoService.svc" binding="wsHttpBinding"
bindingConfiguration="WSHttpBinding_IEchoService" contract="IEchoService"
name="WSHttpBinding_IEchoService">
<identity>
<servicePrincipalName value="host/mikev-ws" />
</identity>
</endpoint>
</client>
</system.serviceModel>
【问题讨论】:
您的客户端配置如何? @Ladislav Mrnka:我已经更新了我的帖子以显示客户端配置。谢谢 【参考方案1】:因此,您在第一个示例中定义的端点地址不完整。您还必须定义端点身份,如客户端配置中所示。在代码中你可以试试这个:
EndpointIdentity spn = EndpointIdentity.CreateSpnIdentity("host/mikev-ws");
var address = new EndpointAddress("http://id.web/Services/EchoService.svc", spn);
var client = new EchoServiceClient(address);
litResponse.Text = client.SendEcho("Hello World");
client.Close();
valamas 的实际工作最终版本
EndpointIdentity spn = EndpointIdentity.CreateSpnIdentity("host/mikev-ws");
Uri uri = new Uri("http://id.web/Services/EchoService.svc");
var address = new EndpointAddress(uri, spn);
var client = new EchoServiceClient("WSHttpBinding_IEchoService", address);
client.SendEcho("Hello World");
client.Close();
【讨论】:
我已经修改了我的帖子,显示了我根据您的示例使用的代码以及我现在遇到的错误。谢谢。 @Valamas:你确定你只是在通信的一侧不小心更改了配置的某些部分吗?如果您只调用初始代码而不从代码中传递 EndpointAddress,会发生什么情况? 它正在工作。问题是我在与 John Petrak 合作时添加的配置更改。当我离开办公室一个小时时,把它留在里面没有帮助。非常感谢您的帮助。完美,干杯:) 这对我有用。对于像我这样也需要通过凭据的其他人,您可以在声明client
后立即添加以下行:client.ClientCredentials.UserName.UserName = "myUsername"; client.ClientCredentials.UserName.Password = "myPassword";
【参考方案2】:
这是我用于最近测试的一个简单示例。 您需要确保服务器和客户端的安全设置相同。
var myBinding = new BasicHttpBinding();
myBinding.Security.Mode = BasicHttpSecurityMode.None;
var myEndpointAddress = new EndpointAddress("http://servername:8732/TestService/");
client = new ClientTest(myBinding, myEndpointAddress);
client.someCall();
【讨论】:
在 web.config 我更改为<security mode="None">
。我已将我当前的代码和错误附加到我的原始帖子中。【参考方案3】:
app.config
<client>
<endpoint address="" binding="basicHttpBinding"
bindingConfiguration="LisansSoap"
contract="Lisans.LisansSoap"
name="LisansSoap" />
</client>
程序
Lisans.LisansSoapClient test = new LisansSoapClient("LisansSoap",
"http://webservis.uzmanevi.com/Lisans/Lisans.asmx");
MessageBox.Show(test.LisansKontrol("","",""));
【讨论】:
这样简单得多。我将它用于 AD WS【参考方案4】:我们将 URL 存储在数据库中并在运行时加载它们。
public class ServiceClientFactory<TChannel> : ClientBase<TChannel> where TChannel : class
public TChannel Create(string url)
this.Endpoint.Address = new EndpointAddress(new Uri(url));
return this.Channel;
实施
var client = new ServiceClientFactory<yourServiceChannelInterface>().Create(newUrl);
【讨论】:
以上是关于WCF 在运行时更改端点地址的主要内容,如果未能解决你的问题,请参考以下文章
如何以编程方式修改 WCF app.config 端点地址设置?
未找到 WCF 端点/不允许使用 Windows 服务的方法