$.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
webservice使用windows身份验证,ajax请求报错401未授权的解决办法
最新推荐文章于 2024-08-29 10:42:30 发布