webservice使用windows身份验证,ajax请求报错401未授权的解决办法

$.ajax({
    type: "GET",
    url: service_url,
    dataType: "xml",
    data: "ParamId=" + FormId.value,
    processData: false,
    xhrFields: {
        withCredentials: true
    },
    error: function(XMLHttpRequest, textStatus, errorThrown) { ajaxError(XMLHttpRequest, textStatus, errorThrown); },
    success: function(xml) { DoSomething(xml); }
});

方法:加上红色标注部分
参考:https://stackoverflow.com/questions/1002179/how-can-i-pass-windows-authentication-to-webservice-using-jquery


winform调用:
var service=new xxxxService();
service.Credentials = System.NET.CredentialCache.DefaultCredentials;

From:http://www.cnblogs.com/xuejianxiyang/p/7337761.html
posted @ 2017-08-10 10:13  Ace001  阅读(2985)  评论(0编辑  收藏  举报