Я пытаюсь выяснить, как настроить конфигурации моей службы и клиентского приложения 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