使用Jquery调用WCF服务时的Windows身份验证

时间:2018-04-20 12:38:37

标签: jquery authentication sharepoint-2013

我有一个嵌入在SharePoint内部环境中的jquery文件。我想调用启用了Windows身份验证的WCF服务。 我已启用CORS并添加了标题(" Access-Control-Allow-Origin","请求的域"),(" Access-Control-Allow-Credentials&#34 ;," true")  (" Cache-Control"," no-cache")。

ajax调用如下: -

//ajax
$.ajax({
    url: url,
    type: "POST",
    data: data,
    success: successCallback,
    contentType: "application/json",
crossDomain: true,
   xhrFields: {
        withCredentials: true
    },
    error: errorCallback,
    dataType: "json"
})
}

但是,拨打服务电话是指未授权:由于凭据无效,访问被拒绝。我正在使用IE11浏览器。

您能帮我解决一下如何通过当前登录的用户凭证来拨打我的服务电话。

0 个答案:

没有答案