Web API,Web Service SharePoint对象操作报Operation is not valid due to the current state of the object解决方案,这是因为当前的user信息不一致导致的,添加HttpContext.Current = null;,解决,要类似这样:

SPSecurity.RunWithElevatedPrivileges(delegate()
            {
                HttpContext.Current = null;
                using (SPSite site = new SPSite(targetWeb))
                {
                    using (SPWeb web = site.OpenWeb())
                    {
                        SPList targetlist = web.Lists[targetList];
                        foreach (ItemType item in import.item)
                        {
   ...
                        }
                    }
                }
            });

相关文章:

  • 2021-06-17
  • 2021-05-25
  • 2022-12-23
  • 2021-10-26
  • 2022-03-04
  • 2022-12-23
  • 2021-08-01
猜你喜欢
  • 2021-05-29
  • 2021-11-08
  • 2022-01-10
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案