How to configure WCF Service with Https WindowsAuthentication?
Posted
by Melania
on Stack Overflow
See other posts from Stack Overflow
or by Melania
Published on 2010-04-13T11:51:43Z
Indexed on
2010/04/13
11:52 UTC
Read the original article
Hit count: 286
I am trying to figure it out how to set configurations on my service and Silverlight client App to work on Secure Windows Authentication.
I have my service configured like this:
<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>
Any ideas? 10q
© Stack Overflow or respective owner