調用web services提示Access Denied的解決辦法[整理]

來源:互聯網
上載者:User

現象:
asp.net中調用web services時提示錯誤:
請求因   HTTP   狀態   401   失敗:Access   Denied。  

將web services放到另一台伺服器問題又不存在該問題。

解決辦法:
1.建立方法:
#region GetCredentialCache
/// <summary>
/// 擷取CredentialCache
/// 解決訪問web service時提示沒有許可權的問題
/// </summary>
/// <returns></returns>
public static CredentialCache GetCredentialCache()
{
 //許可權驗證web services地址
 string WSUrl = RightsServicesUrl;

 //Create an instance of the CredentialCache class.
 CredentialCache cache = new CredentialCache();

 // Add a NetworkCredential instance to CredentialCache.
 // Negotiate for NTLM or Kerberos authentication.
 cache.Add( new Uri(WSUrl), "Negotiate", new NetworkCredential("域使用者名稱", "域密碼", "域"));

 return cache;
}
#endregion

2.為web services指定CredentialCache
web services引用名為RightsControl,添加如下代碼:

RightsControl rightsControl = new RightsControl();
//為web services指定CredentialCache,最重要的就是這一句
rightsControl.Credentials = GetCredentialCache();
//調用rightsControl的方法
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.