401尝试实施CORS for SharePoint时

时间:2013-05-14 17:46:39

标签: javascript ajax sharepoint authentication cors

我想从位于domainB.contoso.com上的网络应用程序访问位于domainA.contoso.com上的listdata.svc(一个sharepoint服务) - 身份验证似乎是一个问题。

当尝试通过JQuery Ajax调用访问ListData.svc时,启用CORS,服务器返回401.如果我从SharePoint内部执行的.htm页面运行相同的查询,则调用正常,因为域名是一样的。

SharePoint正在使用关闭匿名身份验证的NTLM - 我认为401是Windows凭据未传递到SharePoint服务器的结果 - 但我不知道如何将这些凭据正确添加到标头中。 我已设置xhrFields:{withCredentials:true},但这似乎无法解决身份验证问题。

要启用CORS,我在IIS中的SharePoint上设置了以下HTTP响应标头:

  • Access-Control-Allow-Credentials:true
  • Access-Control-Allow-Headers:Origin,Content-Type,Accept
  • Access-Control-Allow-Origin:*
  • 访问控制请求方法:POST,GET,HEAD,OPTIONS

在我的Web应用程序的IIS中启用了Windows身份验证,我没有在IIS中设置“OPTIONSVerbHandler”HTTP处理程序。把它变成阅读似乎没有什么区别。

JQuery Ajax调用(来自subdomainB.contoso.com上的应用程序):

 $.ajax({
        type: "GET",
        contentType: "application/json; charset=utf-8",
        url: listUrl,
        xhrFields: { withCredentials: true },
        crossDomain:true,  
        processData: false,
        async: true,
        dataType: "json",
        converters: {
            // WCF Data Service .NET 3.5 incorrectly escapes singles quotes, which is clearly
            // not required (and incorrect) in JSON specs.
            // http://bugs.jquery.com/ticket/8320?cversion=0&cnum_hist=1
            "text json": function (textValue) {
                return jQuery.parseJSON(textValue.replace(/(^|[^\\])\\'/g, "$1'"));
            }
        },
        success: function (data, status, xhr) {
            //successFunc(data.d.results);
            alert("working!");
        },
        error: function (xhr, status, error) {
            alert("failure!");
        }
    });

HTTP标头和401响应:

Key Value
Request OPTIONS /_vti_bin/ListData.svc/Contacts HTTP/1.1
Accept  */*
Origin  http://domainB.contoso.com
Access-Control-Request-Method   GET
Access-Control-Request-Headers  content-type, accept
Accept-Encoding gzip, deflate
User-Agent  Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)
Host    domainA.contoso.com
Content-Length  0
DNT 1
Connection  Keep-Alive
Cache-Control   no-cache

Key Value
Response    HTTP/1.1 401 Unauthorized
Server  Microsoft-IIS/7.5
SPRequestGuid   1e33061c-f555-451b-9d69-0d83eff5f5ea
WWW-Authenticate    NTLM
X-Powered-By    ASP.NET
MicrosoftSharePointTeamServices 14.0.0.4762
Access-Control-Allow-Headers    Origin, Content-Type, Accept
Access-Control-Allow-Origin *
Access-Control-Request-Methods  POST, GET, HEAD, OPTIONS
Access-Control-Allow-Credentials    true
Date    Wed, 15 May 2013 15:04:51 GMT
Content-Length  0

3 个答案:

答案 0 :(得分:3)

迟到的响应,但我找到了另一个线程here,它有一个简单的IIS解决方案,对我有用。

基本上,CORS标准规定预检请求不应发送任何认证信息,因此401.在该线程中有一个例子,限制对OPTIONS动词的匿名请求,允许对预检(OPTIONS动词)请求做出200响应但仍需要对其他人进行身份验证。

答案 1 :(得分:0)

我不确定“禁用匿名身份验证”是什么意思,但听起来这正是您获得401(Unauthorized)响应的原因。它与CORS无关,但服务器告诉客户端它需要用户名和密码才允许访问。

尝试将用户名和密码传递给$.ajax()警告:它只是为了测试是否解决了您的问题,在JS代码中硬编码这些详细信息是一个坏主意):

$.ajax({
  crossDomain:true,    
  url: listUrl,
  username: VALID_USERNAME,
  password: VALID_PASSWORD,
  success: function(data){alert("hello json!") },
  error: function() {
    alert("epic fail");
  },
  dataType:'json'
});

答案 2 :(得分:0)

当客户端发送“withCredentials:true”时,您无法在服务器上使用通配符(*)进行Access-Control-Allow-Origin。
您必须明确设置域。
CORS: Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true