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