WCF Cancel off Security Error

Tang Bull 0 Reputation points
2023-05-15T11:55:38.3433333+00:00

An error occurs during software login: "the caller was not authenticated by the service"

However, I have previously applied the security mechanisms of X509 and have now cancelled them all. However, I still receive an error message and cannot log in. I have no issues on my Windows 7 computer and Windows 10 computer, but there will be error prompts on the Windows Server server.

Windows for business Windows Client for IT Pros User experience Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 44,746 Reputation points
    2023-05-18T15:27:30.63+00:00
    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--
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.