当我在 IIS-8 上部署我的 WebAPI 项目并使用 Postman 进行测试时,它给我错误消息“HTTP 错误 401.2 - 未授权由于身份验证标头无效,您无权查看此页面。更多信息:当服务器配置不支持发送到 Web 服务器的 WWW-Authenticate 标头时,会发生此错误。检查资源的身份验证方法,并验证客户端使用的身份验证方法。当身份验证方法不同时会发生错误。要确定客户端使用的身份验证类型,请检查客户端的身份验证设置。”在本地它工作正常。我的 Web.Config 内容是:<configuration> <appSettings> <add key="WhiteListedIPAddresses" value="::1,192.168.9.175,192.168.9.234"/> <!-- Example "::1,192.168.9.234" --> </appSettings> <system.web> <compilation debug="true" targetFramework="4.5.1" /> <httpRuntime targetFramework="4.5.1" /> <customErrors mode="Off"/> <!--<authentication mode="Windows" /> --> </system.web> <system.webServer> <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name="TRACEVerbHandler" /> <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> </handlers> </system.webServer> <connectionStrings> <!--<add name="myConnectionString" connectionString="Provider=ASAProv.80; Trusted_Connection=True;Data Source=softwrench;Persist Security Info=True;commlinks=TCPIP;" /> --> <add name="myConnectionString" connectionString="Provider=ASAProv.80; Trusted_Connection=True;Data Source=Corporate;Persist Security Info=True;commlinks=TCPIP;" /></connectionStrings> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> </dependentAssembly> <dependentAssembly>
1 回答
RISEBY
TA贡献1856条经验 获得超5个赞
我已经设定
<section name="authorization" overrideModeDefault="Deny" />
至
<section name="authorization" overrideModeDefault="Allow" />
在 applicationHost.Config 文件中,解决这个问题。
- 1 回答
- 0 关注
- 241 浏览
添加回答
举报
0/150
提交
取消