如何使用Https WindowsAuthentication配置WCF服务?

时间:2010-04-13 11:51:43

标签: wpf silverlight

我正在尝试弄清楚如何在我的服务和Silverlight客户端应用程序上设置配置以使用安全Windows身份验证。

我的服务配置如下:

    <binding name="currentCustomBinding">

      <binaryMessageEncoding />

      <httpsTransport authenticationScheme="Ntlm" bypassProxyOnLocal="true" />

    </binding>

  </customBinding>

      <serviceMetadata httpGetEnabled="False" httpsGetEnabled="True" />

      <serviceDebug includeExceptionDetailInFaults="false" />

    </behavior>

  <service name=" OperationService" behaviorConfiguration=" OperationServiceBehavior">

    <endpoint address="" behaviorConfiguration=" OperationServiceBehavior" binding="customBinding" bindingConfiguration="currentCustomBinding" contract="OperationService" />

  </service>

有什么想法吗? 10Q

0 个答案:

没有答案