0

要求是调用 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>
4

1 回答 1

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;
于 2012-12-03T20:56:05.910 回答