I know this error has been discussed many a times but I couldn't find any answers relevant to me so am trying again.
Basically, I have a WCF service, which I have deployed to on one of our servers and it works fine with Windows Authentication. However, when I move the same server to a different server, I get the following error
"Security settings for this service require 'Anonymous' Authentication but it is not enabled for the IIS application that hosts this service"
I have checked the bindings and they seem to be configured fine. They are as below
<bindings> <basicHttpBinding> <binding name="basicHttpBindingConfig"> <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows"/> </security> </binding> </basicHttpBinding> </bindings>
I have also compared the machine.config and applicationHost.config files on the two servers and they seem similar.
Any pointers / help would be really appreciated.
Regards,
Hamid