使用CSOM连接sharepoint站点

时间:2014-12-10 05:21:20

标签: c# sharepoint csom

我的代码如下所示

  try
    {

        string strUserName="abc";
        string strPassword="123";
        ClientContext context = new ClientContext(siteurl);
        var credentials = new NetworkCredential(strUserName, strPassword,"Ext");


        context.Credentials = credentials;
        // The SharePoint web at the URL.
        Web web = context.Web;

        // We want to retrieve the web's properties.
        context.Load(web);

        // Execute the query to the server.
        context.ExecuteQuery();

        // Now, the web's properties are available and we could display 
        // web properties, such as title. 
        System.Console.WriteLine("Web Title");
        System.Console.WriteLine(web.Title);
    }
    catch (Exception ex)
    {
    }

它出错“无法连接远程服务器”

2 个答案:

答案 0 :(得分:1)

首先要确保正确传递以下实体:

  • SITEURL
  • strUserName中
  • strPassword
  • "分机"

如果您尝试连接到SharePoint Online 2013,那么您必须更换," NetworkCredential"用" SharePointOnlineCredentials"。这是代码片段:

    string strUserName="abc";
    string strPassword="123";
    SecureString ssPwd = new SecureString();
    strPassword.ToList().ForEach(ssPwd.AppendChar);
    ClientContext context = new ClientContext(siteurl);
    SharePointOnlineCredentials credentials = new SharePointOnlineCredentials(strUserName, ssPwd);

    context.Credentials = credentials;
    // The SharePoint web at the URL.
    Web web = context.Web;

    // We want to retrieve the web's properties.
    context.Load(web);

    // Execute the query to the server.
    context.ExecuteQuery();

答案 1 :(得分:0)

接受自签名证书:

ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;

相关问题