webservice使用windows身份验证,ajax请求报错401…

2018-06-22 07:51:07来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

$.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

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:mysql 数据库的备份与还原 at winows

下一篇:.NET Core 2.0 是您的最好选择吗?