Hi
I have a simple WCF service hosting on IIS6 on a server on the network.
When I use the following binding on a server in my network I got 404, if just made clientCredentialType None, it works, also it works on my machine, why Windows authentication fails on server, 404 actually means it cannot even see the endpoint, if it is a proxy problem how to fix that.
<basicHttpBinding>
<binding name="HttpWindowsAuthentication"
maxReceivedMessageSize="1048576" bypassProxyOnLocal="true"
useDefaultWebProxy="false">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" proxyCredentialType="None"/>
</security>
</binding>
</basicHttpBinding>
thanks