我正在尝试将数据从我的Angular 2服务发布到使用Windows身份验证的ASP.NET 5 API并托管在IIS上。 对angular进行一些修改后,将使用以下命令创建请求:
var request = new XMLHttpRequest();
request.withCredentials = true;
这解决了我授权GET请求的问题,现在对于第一个GET请求,服务器返回带有标题的401响应:
WWW-Authenticate:Negotiate
WWW-Authenticate:NTLM
之后,角度客户端发送另一个请求,但这次使用包含NTLM令牌的Authorization标头并且它可以正常工作。
对于POST请求,我在请求的标题中添加了“Content-Type:application / json”,因此浏览器会发送第一个请求:
OPTIONS /api/reservation/ HTTP/1.1
Host: localhost:82
Connection: keep-alive
Pragma: no-cache
Cache-Control: no-cache
Access-Control-Request-Method: POST
Origin: http://localhost:81
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36
Access-Control-Request-Headers: content-type
Accept: */*
Referer: http://localhost:81/
Accept-Encoding: gzip, deflate, sdch
Accept-Language: pl-PL,pl;q=0.8,en-US;q=0.6,en;q=0.4
服务器响应:
HTTP/1.1 401 Unauthorized
Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/8.5
WWW-Authenticate: Negotiate
WWW-Authenticate: NTLM
X-Powered-By: ASP.NET
Date: Wed, 13 Jan 2016 11:54:56 GMT
Content-Length: 6394
但是这次,与GET请求中的另一个具有授权的请求不同,这是一个错误:
XMLHttpRequest cannot load http://localhost:82/api/reservation/. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:81' is therefore not allowed access. The response had HTTP status code 401.
对于CORS,我在ASP.NET 5中使用此配置:
services.AddCors(options => options.AddPolicy("AllowAll", p => p.AllowAnyOrigin().AllowAnyMethod().WithHeaders("accept", "authorization", "content-type", "origin", "x-custom-header").AllowCredentials()));
我可以以某种方式禁用IIS中的OPTIONS请求的Windows身份验证吗? 或者可能有某种方法迫使浏览器跟进授权?
答案 0 :(得分:4)
好的,我找到了一种方法,可以使用ASP.NET 5在IIS Express或IIS 8.5上运行。
我们需要像这样修改wwwroot / web.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%DNX_PATH%" arguments="%DNX_ARGS%" stdoutLogEnabled="false" startupTimeLimit="3600" forwardWindowsAuthToken="true"></httpPlatform>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Request-Headers" value="Content-Type,Authorization" />
<add name="Access-Control-Allow-Headers" value="Content-Type,Authorization" />
<add name="Access-Control-Allow-Origin" value="http://localhost:5814" />
<add name="Access-Control-Allow-Credentials" value="true" />
</customHeaders>
</httpProtocol>
<security>
<authorization>
<!--<remove users="*" roles="" verbs="" /> Uncomment for IIS-->
<add accessType="Allow" users="*" verbs="GET,POST,PUT" />
<add accessType="Allow" users="?" verbs="OPTIONS" />
<add accessType="Deny" users="?" verbs="GET,POST,PUT" />
</authorization>
</security>
</system.webServer>
<system.web>
<authorization>
<allow users="*" verbs="GET,POST,PUT" />
<allow users="?" verbs="OPTIONS" />
</authorization>
</system.web>
</configuration>
在launchSettings.json中设置:
"iisSettings": {
"windowsAuthentication": true,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:4402/",
"sslPort": 0
}
在Startup.cs中:
services.AddCors(options => options.AddPolicy("AllowAll", p => p.AllowAnyMethod().WithHeaders("accept", "authorization", "content-type", "origin", "x-custom-header").AllowCredentials()));
其中一些设置可能不是必需的。
对于IIS,我们需要安装Windows身份验证和URL授权。