通过 SOAP 使用 SharePoint Web Services 进行 Windows 身份验证
本文关键字:进行 Windows 身份验证 Services Web SOAP 使用 SharePoint 通过 | 更新日期: 2023-09-27 18:33:07
我正在尝试验证我的SharePoint服务t检索SPList项目:
private Cookie AuthenticateFBASite(string AuthenticationSiteURL, string UserName, string Password, NetworkCredential nc2)
{
Cookie CurrentSiteCookie = null;
using (Authentication.Authentication authSvc = new Authentication.Authentication())
{
authSvc.Url = AuthenticationSiteURL + "/_vti_bin/authentication.asmx";
authSvc.CookieContainer = new System.Net.CookieContainer(); //create a new cookie container
//set the FBA login information
authSvc.AllowAutoRedirect = true;
authSvc.PreAuthenticate = true;
authSvc.Credentials = nc2;
Authentication.LoginResult result = authSvc.Login(UserName, Password);
if (result.ErrorCode == Authentication.LoginErrorCode.NoError)
{
try
{
CookieCollection cookies = authSvc.CookieContainer.GetCookies(new Uri(AuthenticationSiteURL));
CurrentSiteCookie = cookies[result.CookieName];
return CurrentSiteCookie;
}
catch (System.Exception ex)
{
//Console.WriteLine("Exception occured while calling lists.asmx" + ex.Message);
return CurrentSiteCookie;
}
}
else if (result.ErrorCode == Authentication.LoginErrorCode.PasswordNotMatch)
{
return CurrentSiteCookie;
}
else
return CurrentSiteCookie;
}
}
直到今天它工作正常,我尝试再次使用它,但它返回了一个错误cookies[result.CookieName]
为空,这只发生在我的机器上而不是其他机器上。
@Eslan 我可以知道你在哪里调用这段代码吗? 从 WebPart 或应用程序或控制台应用程序?我怀疑它的身份验证模式问题。