webservice使用windows身份验证,ajax请求报错401未授权的解决办法_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > webservice使用windows身份验证,ajax请求报错401未授权的解决办法

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

 2017/8/10 11:31:25  Ace001  程序员俱乐部  我要评论(0)
  • 摘要:$.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
  • 标签:Windows 解决办法 Web Service 解决 使用 Webservice Ajax 授权
class="default prettyprint prettyprinted">$.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
发表评论
用户名: 匿名