要求是调用Java Web服务。提供了WSDL。呼叫以不安全的方式成功。现在需要对服务调用进行身份验证。服务调用仅通过特定的Windows用户名/密码成功。由于我们的应用程序中的所有内容都是基于配置的,因此我们不希望在代码中硬编码。感谢是否有人可以证明该怎么做?
我顺便提一下这个配置....
<basicHttpBinding>
<binding name="MyBinding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:30:00" sendTimeout="00:10:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
答案 0 :(得分:1)
您无法在特定于WCF的配置中的任何位置设置用户名/密码。但是,您可以将用户名/密码对设置为应用程序设置,从代码中检索它们,并在WCF客户端中设置它们。
<configuration>
<appSettings>
<add key="UserName" value="My user name" />
<add key="Password" value="Your secret password" />
</appSettings>
</configuration>
并在代码中:
var username = ConfigurationManager.AppSettings["UserName"];
var password = ConfigurationManager.AppSettings["Password"];
client.ClientCredentials.UserName.UserName = username;
client.ClientCredentials.UserName.Password = password;