The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'Negotiate,NTLM'

后端 未结 6 1427
耶瑟儿~
耶瑟儿~ 2020-12-16 11:41

I\'ve looked through a ton of SO articles, and even other sites, but can\'t seem to get this service working. I have a SOAP service I\'m trying to hit and it\'s configured l

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-16 12:29

    You need to set the NTAuthenticationProviders to NTLM

    MSDN Article: https://msdn.microsoft.com/en-us/library/ee248703(VS.90).aspx

    IIS Command-line (http://msdn.microsoft.com/en-us/library/ms525006(v=vs.90).aspx):

     cscript adsutil.vbs set w3svc/WebSiteValueData/root/NTAuthenticationProviders "NTLM"
    

提交回复
热议问题