WCF error: The caller was not authenticated by the service

前端 未结 10 524
野性不改
野性不改 2020-12-01 03:53

I am trying to access my WCF service on a server from my client console application for testing. I am getting the following error:

The caller was no

10条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-01 04:17

    If you use basicHttpBinding, configure the endpoint security to "None" and transport clientCredintialType to "None."

    
        
            
                
                    
                
            
        
    
    
        
            
    
    

    Also, make sure the directory Authentication Methods in IIS to Enable Anonymous access

提交回复
热议问题