28,660 questions
Hello there 4
Please Go to IIS-->Sites-->Your Site-->
Features View Pane-->Authentication
Set Anonymous Authentication to Disabled
Set Windows Authentication to Enabled
or
<bindings>
<basicHttpBinding>
<binding name="MyBasicHttpBinding">
<security mode="None">
<transport clientCredentialType="None" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="MyServiceBehavior" name="MyService">
<endpoint
binding="basicHttpBinding"
bindingConfiguration="MyBasicHttpBinding"
name="basicEndPoint"
contract="IMyService"
/>
</service>
And see if it helps,
Thank you
--If the reply is helpful, please Upvote and Accept as answer--