在Sharepoint 2013 CSOM中调用ClientContext.ExecuteQuery()时出错

时间:2016-01-11 08:19:56

标签: sharepoint sharepoint-2013 csom

我是sharepoint的新手并且正在尝试学习CSOM。我在使用VS 2012的控制台应用程序中编写了一个简单的代码,以从sharepoint 2013站点获取列表详细信息:

        static void Main(string[] args)
        {
            NetworkCredential credentials = new NetworkCredential("xxxx", "xxxx", "xxxx");
            ClientContext context = new ClientContext("http://xxxxxxxxxx-vm2:6667/");
            context.Credentials = credentials;
            List list = context.Web.Lists.GetByTitle("SchoolsList");
            context.Load(list);
            context.ExecuteQuery();

            Console.ReadLine();
        }

On context.ExecuteQuery(); 我收到错误消息:试图以其访问权限xxx.xx.xx.xx禁止的方式访问套接字: 6667 enter image description here 有人可以让我知道我在这里做错了吗?

1 个答案:

答案 0 :(得分:0)

检查防火墙/防病毒软件是否阻止此地址或端口