我正在尝试使用 WCF 使用启用 WS-Security 的服务。身份验证使用 UsernameToken 进行。我对 WCF Web 服务客户端不是很了解,但我认为下面的配置适用于常规 HTTP 通信。我(大部分)使用本指南来配置它。主要区别在于我使用了 VS2010 “添加服务参考” UI 而不是命令提示符。
我的问题是我需要通过 HTTPS 执行此操作。当我<security mode="Message">
在我的 app.config 中使用时,我相信我的肥皂信封包含所需的 WS-Security 标头。我不能确定,因为我无法让日志记录工作。但是,我收到以下错误:The provided URI scheme 'https' is invalid; expected 'http'. Parameter name: via
.
下面是我的 app.config 文件的内容,以及我的客户端代码示例。
<configuration>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="Omitted" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="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" />
<security mode="Message">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" negotiateServiceCredential="false" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="https://omitted.com/service" binding="wsHttpBinding" bindingConfiguration="Omitted" contract="Omitted.Omitted" name="Omitted" />
</client>
</system.serviceModel>
var service = new OmittedClient();
service.ClientCredentials.UserName.UserName = "username";
service.ClientCredentials.UserName.Password = "password";
var response = service.DoSomething(new DoSomethingRequest());